Development/Tutorials/Git/Basics: Difference between revisions

From KDE TechBase
(Add more babysteps for using Git)
(Use code, not pre)
Line 27: Line 27:
</code>
</code>


This creates a repository clone of the upstream. Now charge into that directory and use it like normal. And when you want to update:  
This creates a local copy of the upstream repository. Now change into that directory and code away. When you want to update:


<code>
<code>
Line 33: Line 33:
</code>
</code>


will download the new changes.
Later, if you want to create a new Git repository and add files to it, try the preceeding commands:


Later, if you want to start with a new Git repository and add files to it, try the preceeding commands:
<code>
 
<pre>
carsten@moinmoin:~/git> git init
carsten@moinmoin:~/git> git init
Initialized empty Git repository in .git/
Initialized empty Git repository in .git/
carsten@moinmoin:~/git> echo "Test content" > testfile
carsten@moinmoin:~/git> echo "Test content" > testfile
</pre>
</code>


Now we will check the status of the repository. Git will list one untracked file, that means the file has not yet been added to the repository.
Now we will check the status of the repository. Git will list one untracked file, that means the file has not yet been added to the repository.
Line 56: Line 54:
#      testfile
#      testfile
nothing added to commit but untracked files present (use "git add" to track)
nothing added to commit but untracked files present (use "git add" to track)
</pre>
</code>


In the next three commands the file 'testfile' will be added and commited. Then  Git will check the status again.
In the next three commands the file 'testfile' will be added and commited. Then  Git will check the status again.


<pre>
<code>
carsten@moinmoin:~/git> git add testfile
carsten@moinmoin:~/git> git add testfile
carsten@moinmoin:~/git> git commit -m "This is the first commit"
carsten@moinmoin:~/git> git commit -m "This is the first commit"
Line 69: Line 67:
# On branch master
# On branch master
nothing to commit (working directory clean)
nothing to commit (working directory clean)
</pre>
</code>


Ok, as you can see the file has been commited. Now let's see what we change the contents of the file:
Ok, as you can see the file has been commited. Now let's see what we change the contents of the file:


<pre>
<code>
carsten@moinmoin:~/git> echo "new content" > testfile
carsten@moinmoin:~/git> echo "new content" > testfile
carsten@moinmoin:~/git> git status
carsten@moinmoin:~/git> git status
Line 86: Line 84:
Created commit 14a9802: Second commit
Created commit 14a9802: Second commit
  1 files changed, 1 insertions(+), 1 deletions(-)
  1 files changed, 1 insertions(+), 1 deletions(-)
</pre>
</code>


You see that Git noticed the changes in the file. <i>"git commit -a"</i> commits all changes in the repository. Note: This command does not add newly created files.
You see that Git noticed the changes in the file. <i>"git commit -a"</i> commits all changes in the repository. Note: This command does not add newly created files.
Line 94: Line 92:
<i>git branch</i> shows you the branches of the repository, the one with the '*' is the active one. So let us create a new branch called <i>"bugfix-branch"</i> and assume we want to fix a branch there. After this fix (in this case the new file) we will merge back all the hard work into the master branch.
<i>git branch</i> shows you the branches of the repository, the one with the '*' is the active one. So let us create a new branch called <i>"bugfix-branch"</i> and assume we want to fix a branch there. After this fix (in this case the new file) we will merge back all the hard work into the master branch.


<pre>
<code>
carsten@moinmoin:~/git> git branch
carsten@moinmoin:~/git> git branch
* master
* master
Line 116: Line 114:
  1 files changed, 1 insertions(+), 0 deletions(-)
  1 files changed, 1 insertions(+), 0 deletions(-)
  create mode 100644 newfile
  create mode 100644 newfile
</pre>
</code>


Ok, the bug is fixed now. Next step: Checkout the master branch and merge the two branches:
Ok, the bug is fixed now. Next step: Checkout the master branch and merge the two branches:


<pre>
<code>
carsten@moinmoin:~/git> git checkout master
carsten@moinmoin:~/git> git checkout master
Switched to branch "master"
Switched to branch "master"
Line 133: Line 131:
carsten@moinmoin:~/git> ls
carsten@moinmoin:~/git> ls
newfile  testfile
newfile  testfile
</pre>
</code>


If you would have edited "testfile" in the bugfix-branch, then git would automatically try to merge the contents of "testfile" in the bugfix-branch with the contents of "testfile" in the master branch. Sometimes this can cause a merge conflict. In that case you have to manually edit the "testfile" in the master branch, and afterwards you do a "git commit -a" to complete the merge. Git indicates the conflicting lines in the file itself.
If you would have edited "testfile" in the bugfix-branch, then git would automatically try to merge the contents of "testfile" in the bugfix-branch with the contents of "testfile" in the master branch. Sometimes this can cause a merge conflict. In that case you have to manually edit the "testfile" in the master branch, and afterwards you do a "git commit -a" to complete the merge. Git indicates the conflicting lines in the file itself.


== Lets now have a look at the log of the testfile ==
== Lets now have a look at the log of the testfile ==


<pre>
<code>
carsten@moinmoin:~/git> git log testfile
carsten@moinmoin:~/git> git log testfile
commit 14a9802e249413003d1fa40002baa025aa54c75f
commit 14a9802e249413003d1fa40002baa025aa54c75f
Line 153: Line 150:


     This is the first commit
     This is the first commit
</pre>
</code>
 
 
 


== Handling local changes ==
== Handling local changes ==
Line 162: Line 156:
git-svn cannot sync with SVN when you have local, uncommited changes. For that you are using <i>git stash</i>. That command move the local changes on a stack so that you can sync. After the sync you re-apply them to you Git tree and clear the stack. Very handy feature in many situations! Just do this:
git-svn cannot sync with SVN when you have local, uncommited changes. For that you are using <i>git stash</i>. That command move the local changes on a stack so that you can sync. After the sync you re-apply them to you Git tree and clear the stack. Very handy feature in many situations! Just do this:


<pre>
<code>
git stash
git stash
git svn rebase
git svn rebase
git stash apply
git stash apply
git stash clear
git stash clear
</pre>
</code>


If you have local changes which you would like to revert use the following command. It will revert all local, uncommited changes.
If you have local changes which you would like to revert use the following command. It will revert all local, uncommited changes.


<pre>
<code>
git checkout -f
git checkout -f
</pre>
</code>

Revision as of 01:36, 2 November 2009

This tutorial will show you the basics for Git.

Setting up Git

First, you should tell Git your name and email address. These information will be shown in the log and in commits. Also, you should allow color in Git. There are other color-related features, but this tutorial is just about basics.

git config --global user.name "Your Name"
git config --global user.email [email protected]
git config --global color.ui true

In case you experience problems with colors you should test adding the following to your ~/.bashrc. The 'R' is the important part here.

# R needed for git colours
export LESS="-RIM"


First steps with Git

There are two ways to get started with Git for KDE. If you're only wanting to get code to try it out, you can use the following commands:

git clone <REPOSITORY URL>

This creates a local copy of the upstream repository. Now change into that directory and code away. When you want to update:

git pull

Later, if you want to create a new Git repository and add files to it, try the preceeding commands:

carsten@moinmoin:~/git> git init Initialized empty Git repository in .git/ carsten@moinmoin:~/git> echo "Test content" > testfile

Now we will check the status of the repository. Git will list one untracked file, that means the file has not yet been added to the repository.

carsten@moinmoin:~/git> git status
# On branch master
#
# Initial commit
#
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
#       testfile
nothing added to commit but untracked files present (use "git add" to track)


In the next three commands the file 'testfile' will be added and commited. Then  Git will check the status again.


carsten@moinmoin:~/git> git add testfile
carsten@moinmoin:~/git> git commit -m "This is the first commit"
Created initial commit 246d7aa: This is the first commit
 1 files changed, 1 insertions(+), 0 deletions(-)
 create mode 100644 testfile
carsten@moinmoin:~/git> git status
# On branch master
nothing to commit (working directory clean)


Ok, as you can see the file has been commited. Now let's see what we change the contents of the file:


carsten@moinmoin:~/git> echo "new content" > testfile
carsten@moinmoin:~/git> git status
# On branch master
# Changed but not updated:
#   (use "git add <file>..." to update what will be committed)
#
#       modified:   testfile
#
no changes added to commit (use "git add" and/or "git commit -a")
carsten@moinmoin:~/git> git commit -a -m "Second commit"
Created commit 14a9802: Second commit
 1 files changed, 1 insertions(+), 1 deletions(-)


You see that Git noticed the changes in the file. "git commit -a" commits all changes in the repository. Note: This command does not add newly created files.

Branches and merging are cheap in Git

git branch shows you the branches of the repository, the one with the '*' is the active one. So let us create a new branch called "bugfix-branch" and assume we want to fix a branch there. After this fix (in this case the new file) we will merge back all the hard work into the master branch. carsten@moinmoin:~/git> git branch * master carsten@moinmoin:~/git> git branch bugfix-branch carsten@moinmoin:~/git> git checkout bugfix-branch Switched to branch "bugfix-branch" carsten@moinmoin:~/git> git branch * bugfix-branch master carsten@moinmoin:~/git> echo "a second file" > newfile carsten@moinmoin:~/git> git commit -a # On branch bugfix-branch # Untracked files: # (use "git add <file>..." to include in what will be committed) # # newfile nothing added to commit but untracked files present (use "git add" to track) carsten@moinmoin:~/git> git add newfile carsten@moinmoin:~/git> git commit Created commit 3264357: This file is here for a demonstration of Gits branch- and merge feature 1 files changed, 1 insertions(+), 0 deletions(-) create mode 100644 newfile Ok, the bug is fixed now. Next step: Checkout the master branch and merge the two branches: carsten@moinmoin:~/git> git checkout master Switched to branch "master" carsten@moinmoin:~/git> ls testfile carsten@moinmoin:~/git> git merge bugfix-branch Updating 14a9802..3264357 Fast forward newfile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) create mode 100644 newfile carsten@moinmoin:~/git> ls newfile testfile If you would have edited "testfile" in the bugfix-branch, then git would automatically try to merge the contents of "testfile" in the bugfix-branch with the contents of "testfile" in the master branch. Sometimes this can cause a merge conflict. In that case you have to manually edit the "testfile" in the master branch, and afterwards you do a "git commit -a" to complete the merge. Git indicates the conflicting lines in the file itself.

Lets now have a look at the log of the testfile

carsten@moinmoin:~/git> git log testfile commit 14a9802e249413003d1fa40002baa025aa54c75f Author: Carsten Niehaus <[email protected]> Date: Fri Apr 18 18:07:18 2008 +0200 Second commit commit 246d7aad05139314e7ff62a5becb6c930f72fb8f Author: Carsten Niehaus <[email protected]> Date: Fri Apr 18 18:06:33 2008 +0200 This is the first commit

Handling local changes

git-svn cannot sync with SVN when you have local, uncommited changes. For that you are using git stash. That command move the local changes on a stack so that you can sync. After the sync you re-apply them to you Git tree and clear the stack. Very handy feature in many situations! Just do this: git stash git svn rebase git stash apply git stash clear If you have local changes which you would like to revert use the following command. It will revert all local, uncommited changes. git checkout -f