目次
はじめに
社内のGitリポジトリへのプロジェクト追加時のコマンドをよく忘れてしまうため、個人的なメモとなります。
アドバイスなども頂けると非常にうれしいです。
Gitリポジトリへのプロジェクト追加手順
Gitサーバ
cd /home/git
sudo mkdir foobar.git
sudo chmod g+ws foobar.git
cd foobar.git
sudo git init --bare --shared
sudo vi description
cd ..
sudo chown -R git:git foobar.git
クライアント
cd foobar
git init
cat <<EOF > .gitattributes
*.py filter=rcs-keyword
*.pm filter=rcs-keyword
*.pl filter=rcs-keyword
*.php filter=rcs-keyword
*.html filter=rcs-keyword
*.js filter=rcs-keyword
*.ps1 filter=rcs-keyword
EOF
cat <<EOF > .gitignore
*.pyc
EOF
git add *.py .gitattributes .gitignore
git commit -m "initinal commit"
git tag -a v0.1 -m "first tag"
git remote add origin https://git-server.local/git/foobar.git
git push origin master
git push origin v0.1
Git Clone
git clone https://git-server.local/git/foobar.git
Git Pull
git pull origin master
Git Commit
git add *.py .gitattributes .gitignore
git commit -m "URL 変更"
git log
git tag -a v1.0 -m "major"
git push origin master
git push origin v1.0
コメント