-
Notifications
You must be signed in to change notification settings - Fork 5
Cheat Guide for VCS
David Gonzalez edited this page Apr 17, 2017
·
9 revisions
VCS philosophy The reason is that changes are broad and staying behind master makes your code more prone to errors ###Get the latest updates to the repository structure
git pull
git status
git pull origin branch_you_want_merge
git status
that one is to see what have you changed in your current workspace
if you decide not to mess with a current branch but want to keep the changes you have done so far
git checkout -b your_new_branch
git config credential.helper store
git push your_repository_url
for ours "your_repository_url" is https://github.com/tlatoza/SeeCodeRun.git