-
-
Save gbraccialli/3af725bddd5eb2f73c269eb1cf20486a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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