Skip to content

Instantly share code, notes, and snippets.

@gbraccialli
Last active March 25, 2020 04:54
Show Gist options
  • Save gbraccialli/3af725bddd5eb2f73c269eb1cf20486a to your computer and use it in GitHub Desktop.
Save gbraccialli/3af725bddd5eb2f73c269eb1cf20486a to your computer and use it in GitHub Desktop.
git add *
git commit -m "changes..."
git push
git checkout v1.1
git pull
git remote set-url origin https://[email protected]
git config credential.helper store
git config --system --unset credential.helper
git config --global http.sslVerify false
git push --set-upstream origin develop
git init
git remote add origin https://[email protected]
git pull origin master
git checkout master
git add *
git commit -m "first version"
git push
git checkout -b new_branch
git pull
git checkout branch_a
git merge develop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment