タグ

git-svnに関するnetironのブックマーク (2)

  • Git Cheat Sheets JP

    設定 基ランチ リモート・リポジトリ git-stash git-svn 参考 修正履歴 設定 Git には様々なオプション設定がある。中には挙動を大きく変えるものもあるので注意が必要である。 設定をすべて表示する $ git config --list システム (/etc/gitconfig) の設定 $ git config --system --list や、ユーザーごと (~/.gitconfig) の設定 $ git config --global --list など表示する対象を絞ることもできる。 ユーザ名とメール・アドレスを設定する $ git config --global user.name "John Doe" $ git config --global user.email "john.doe@example.com" コミットする時に記録されるユーザー名とメ

  • Learning git-svn in 5min

    You are a SVN user and you don't have time to learn new things, here is a 5min course to get started with Git and git-svn. Import your SVN repository in Git: git svn clone -s https://svn.foo.com/svn/projMake your own Git branch: git checkout -b work trunk git add the files you changed.git commitWant to sync with the remote master SVN repos? git svn dcommit There you go!  And guess what, svn-wrappe

    netiron
    netiron 2008/02/21
    What about my svn:externals
  • 1