Difference between revisions of "GIT"

From Hugo Villeneuve
Jump to: navigation, search
(Cloner le répertoire SVN)
(Conversion SVN à GIT)
Line 35: Line 35:
 
Cloner le répertoire SVN:
 
Cloner le répertoire SVN:
   
$> git svn clone --stdlayout --no-metadata -A ~/projets/vcs/svn-to-git-migration/users.txt https://subversion.assembla.com/svn/gbjazz/ gbjazz
+
$> git svn clone --stdlayout --no-metadata -A ~/projets/vcs/svn-to-git-migration/users.txt https://subversion.assembla.com/svn/hugovil/ hugovil
   
 
If you want to keep other remote branches in your repo, you want to create a local branch for each one manually. If you don't do this, the branches won't
 
If you want to keep other remote branches in your repo, you want to create a local branch for each one manually. If you don't do this, the branches won't
Line 66: Line 66:
   
 
Push changes to new remote repository (example Assembla)
 
Push changes to new remote repository (example Assembla)
$> git remote add origin git@git.assembla.com:gbjazz.git
+
$> git remote add origin git@git.assembla.com:hugovil.git
 
$> git checkout master
 
$> git checkout master
 
$> git push --tags
 
$> git push --tags
Line 77: Line 77:
   
 
$> git branch -a
 
$> git branch -a
* master
+
* master
 
remotes/origin/HEAD -> origin/master
 
remotes/origin/HEAD -> origin/master
 
remotes/origin/master
 
remotes/origin/master
remotes/origin/section-nouvelles
+
remotes/origin/bozo
   
$> git checkout -b section-nouvelles origin/section-nouvelles
+
$> git checkout -b bozo origin/bozo
Branch section-nouvelles set up to track remote branch section-nouvelles from origin.
+
Branch bozo set up to track remote branch bozo from origin.
Switched to a new branch 'section-nouvelles'
+
Switched to a new branch 'bozo'

Revision as of 00:27, 19 February 2013

Branches

Ce script peut-être utile pour créér une branche locale, l'enregistrer sur le serveur remote et ensuite la faire suivre (track):

#!/bin/bash
# git-create-branch <branch_name>

if [ $# -ne 1 ]; then
    echo 1>&2 Usage: $0 branch_name
    exit 1
fi

branch_name=$1

git checkout -b ${branch_name}
git push origin ${branch_name}
git branch --set-upstream ${branch_name} origin/${branch_name}

Pour effacer la branche distance (remote):

 $> git push origin :${branch_name}

Appliquer des patches récalcitrantes

 $> git am -3 --ignore-whitespace <name.patch>

Changer le nom de l'auteur dans un commit

 $> exec git commit --amend --author="Prénom Nom <prenom.nom@hugovil.com>" -C HEAD

Conversion SVN à GIT

Cloner le répertoire SVN:

 $> git svn clone --stdlayout --no-metadata -A ~/projets/vcs/svn-to-git-migration/users.txt https://subversion.assembla.com/svn/hugovil/ hugovil

If you want to keep other remote branches in your repo, you want to create a local branch for each one manually. If you don't do this, the branches won't get cloned in the final step

 $> git checkout -b local_branch remote_branch

Tags are imported as branches. You have to create a local branch, make a tag and delete the branch to have them as tags in git. To do it with tag "v1":

 $> git checkout -b tag_v1 remotes/tags/v1
 $> git checkout master
 $> git tag v1 tag_v1
 $> git branch -D tag_v1


Clone your GIT-SVN repo into a clean git repo:

 $> git clone dest_dir-tmp dest_dir
 $> rm -rf dest_dir-tmp
 $> cd dest_dir

The local branches that you created earlier from remote branches will only have been copied as remote branches into the new cloned repository. For each branch you want to keep:

 $> git checkout -b local_branch origin/remote_branch

Finally, remove the remote from your clean git repo that points to the now deleted temp repo:

 $> git remote rm origin

Push changes to new remote repository (example Assembla)

 $> git remote add origin git@git.assembla.com:hugovil.git
 $> git checkout master
 $> git push --tags
 $> git push origin master
 $> git checkout branch1
 $> git push origin branch1
 $> ...

When cloning and to track remote branch:

 $> git branch -a
 * master
 remotes/origin/HEAD -> origin/master
 remotes/origin/master
 remotes/origin/bozo
 $> git checkout -b bozo origin/bozo
 Branch bozo set up to track remote branch bozo from origin.
 Switched to a new branch 'bozo'