Editing
Git references
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
[http://rogerdudler.github.io/git-guide/ Simple Git Guide] Create a new branch named "feature_x" and switch to it using git checkout -b feature_x Switch back to master git checkout master Delete the branch when done git branch -d feature_x Branch is not available to others unless you push the branch to your remote repository git push origin <branch> Merge from a branch to active branch git merge <branch> Do this on each library git checkout release/2.3 git pull git checkout -b LA_mah To pull commited submits from master (or other branch) to new branch git checkout -b LA_mah git merge master git checkout master git reset --hard 508959bf0777a1d390976d3c282ca698993d2ad7 To merge from one branch to another, this merges changes from LA_mah to source_qual_brh git checkout -b source_qual_brh git merge LA_mah git push Moving to bitbucket git status git remote -v git remote add bitbucket git@bitbucket.org:heuresistechsoftware/hbi.git git remote rm origin git remote -v git remote --help git remote rename bitbucket origin git remote -v git log -2 git pull git branch --set-upstream-to=origin/LA_mah LA_mah git pull Rebase git pull # status must show up to date, nothing to commit git status git rebase release/2.3 git pull git push
Summary:
Please note that all contributions to SoftwareGuy may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
SoftwareGuy:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
Edit source
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information