Grateful’s Actual

Grateful’s Actual 

I sell Foundation backed Computational Clearances

1subscriber

15posts

Showcase

11
goals1
$0 of $1 414 raised
I need the money to advance my business objectives and help my family with bills!
Feb 24 09:35 · Sponsored

Well.exe

wsl.exe --list --online
git remote set-url
git remote set-url command takes two arguments:
An existing remote name. For example, origin or upstream are two common choices.
A new URL for the remote. For example:
If you're updating to use HTTPS, your URL might look like:
https://github.com/OWNER/REPOSITORY.git
If you're updating to use SSH, your URL might look like:
git@github.com:OWNER/REPOSITORY.git
Switching remote URLs from SSH to HTTPS
Open Terminal.
Change the current working directory to your local project.
List your existing remotes in order to get the name of the remote you want to change.
$ git remote -v
> origin git@github.com:OWNER/REPOSITORY.git (fetch)
> origin git@github.com:OWNER/REPOSITORY.git (push)
Change your remote's URL from SSH to HTTPS with the git remote set-url command.
git remote set-url origin https://github.com/OWNER/REPOSITORY.git
Verify that the remote URL has changed.
$ git remote -v
# Verify new remote URL
> origin https://github.com/OWNER/REPOSITORY.git (fetch)
> origin https://github.com/OWNER/REPOSITORY.git (push)
The next time you git fetch, git pull, or git push
:: Want to update this thing and don't know how?
:: Check http://ss64.com/nt/syntax.html
@ECHO OFF
SETLOCAL ENABLEEXTENSIONS
:: globals
SET netfx=0
IF "%~1" EQU "--help" (
GOTO :PRINT_HELP
)
IF "%~1" EQU "/?" (
GOTO :PRINT_HELP
)
:NETFX_DETECT
:: Detect if NETFX 4.5.1 or greater is installed
:: https://msdn.microsoft.com/en-us/library/hh925568(v=vs.110).aspx
FOR /F "usebackq tokens=1,3" %%i in (`REG QUERY "HKLM\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Client" /v Release`) DO IF "%%i" EQU "Release" SET /a netfx=%%j
FOR /F "usebackq tokens=1,3" %%i in (`REG QUERY "HKLM\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full" /v Release`) DO IF "%%i" EQU "Release" SET /a netfx=%%j
:: 0x5C733 - .NET Framework 4.5.1 installed with Windows 8.1 or Windows Server 2012 R2
IF %netfx% LSS 378675 (
GOTO :NETFX_NOT_FOUND
)
"%~dp0\git-credential-manager" install
:SUCCESS
EXIT /B 0
:FAILURE
ECHO.
ECHO Something went wrong and I was unable to complete the installation. U_U
EXIT /B %errorlevel%
:NETFX_NOT_FOUND
ECHO.
ECHO Failed to detect the Microsoft .NET Framework. Make sure it is installed. U_U
ECHO Don't know where to get the Microsoft .NET Framework? Try http://bit.ly/1kE08Rz
EXIT /B 3
:PRINT_HELP
"%~dp0\git-credential-manager" ?
EXIT /B 0
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="MicroBuild.Core" version="0.3.0" targetFramework="net462" developmentDependency="true" />
<package id="Microsoft.Net.Compilers" version="2.8.0" targetFramework="net462" developmentDependency="true" />
<package id="MSBuildTasks" version="1.5.0.235" targetFramework="net452" developmentDependency="true" />
<package id="NuGet.CommandLine" version="4.6.2" targetFramework="net462" developmentDependency="true" />
<package id="Pandoc.Windows" version="2.1.0" developmentDependency="true" />
<package id="Tools.InnoSetup" version="5.5.9" targetFramework="net452" />
<package id="Tools.InnoSetup.Download" version="1.5.1" targetFramework="net452" />
</packages>
wsl.exe --list --online git remote set-url git remote set-url command takes two arguments: An existing remote name. For example, origin o
Creator has disabled comments for this post.
Go up