PCSX2 Documentation/Git Survival Guide: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 1: Line 1:
There are a lots of guides/docs on internet but they are too big and confusing. You will find here a mini guide to use git with a minimal number of commands and parameters. You won't find any details or explications of git's internal mechanisms here.
There are a lots of guides/docs on internet but they are too big and confusing. You will find here a mini guide to use git with a minimal number of commands and parameters. You won't find any details or explications of git's internal mechanisms here.


=Git Guide=
==Git Guide==


==Remote Transfer or how to communicate with the world==
===Remote Transfer or how to communicate with the world===
* Get a fresh repository: <code>git clone <remote path></code>
* Get a fresh repository: <code>git clone <remote path></code>
* Update current repository to latest: <code>git fetch -v</code>
* Update current repository to latest: <code>git fetch -v</code>
Line 9: Line 9:
* Send your new commit to the remote: <code>git push <remote> <branch></code>
* Send your new commit to the remote: <code>git push <remote> <branch></code>


==Commit or how to communicate with your local repository==
===Commit or how to communicate with your local repository===
* staged your change with dynamic selection: <code>git add/rm -p <file></code>
* staged your change with dynamic selection: <code>git add/rm -p <file></code>
* commit your change: <code>git commit</code>
* commit your change: <code>git commit</code>
Line 16: Line 16:
* discard your change **forever** with dynamic selection: <code>git checkout -p -- <file></code>
* discard your change **forever** with dynamic selection: <code>git checkout -p -- <file></code>


==Stash or how to save your precious work==
===Stash or how to save your precious work===
Stash is very useful. For example, your will use it before/after (push/pop) merge/rebase action  
Stash is very useful. For example, your will use it before/after (push/pop) merge/rebase action  
* Push pending update on the stack: <code>git stash</code>
* Push pending update on the stack: <code>git stash</code>
Line 22: Line 22:
* view content of your stash: <code>git stash show -p stash@\{0\}</code>
* view content of your stash: <code>git stash show -p stash@\{0\}</code>


==Rebase or how to screw the history==
===Rebase or how to screw the history===
'''Never''' rebase commits that were pushed remotely. Rebase can be used to improve your current patch set, or to fast-forward-merge after a fetch.
'''Never''' rebase commits that were pushed remotely. Rebase can be used to improve your current patch set, or to fast-forward-merge after a fetch.
* The rebase command: <code>git rebase -i</code>
* The rebase command: <code>git rebase -i</code>
Line 29: Line 29:
* Continue rebase: <code>git rebase --continue</code>
* Continue rebase: <code>git rebase --continue</code>


==Branch or how to separate your work by feature==
===Branch or how to separate your work by feature===
Please note that master is actually the default branch
Please note that master is actually the default branch
* List branches: <code>git branch -v</code>
* List branches: <code>git branch -v</code>
Line 37: Line 37:
* Set the base reference of the branch (for rebase): git branch --set-upstream-to=<code><remote><branch_name></code>
* Set the base reference of the branch (for rebase): git branch --set-upstream-to=<code><remote><branch_name></code>


=Git use case example=
==Git use case example==


==Branch management==
===Branch management===
Let's say you want to rebase your current branch topic-v1 to topic-v2 with new addition. Note topic-v1 could also be master too.
Let's say you want to rebase your current branch topic-v1 to topic-v2 with new addition. Note topic-v1 could also be master too.
* Go to current branch: git checkout topic-v1
* Go to current branch: git checkout topic-v1
Line 48: Line 48:
* ...
* ...


==Split commit==
===Split commit===
* copy your repository if you're not confident with this kind of operation: cp -a `<repository>` `<repository backup>`
* copy your repository if you're not confident with this kind of operation: cp -a `<repository>` `<repository backup>`
* do a rebase: git rebase -i
* do a rebase: git rebase -i
ninja
782

edits