コマンド
概要 †
下位ページ †
トラブルシューティング †
- 日本語が文字化けする→以下を打つだけでOK
git config --local core.quotepath false
- タグ'tagname"を作る
git tag tagname
- タグ"tagname"を削除
git tag -d tagname
- リモートタグ"tagname"を削除
git push origin :TAGNAME
- pushしていないタグを全てpush
git push origin --tags
- ブランチの可視化ツール
gitk
- でっかいファイルを間違えてコミットしてしまったら
git filter-branch --force --index-filter 'git rm --cached --ignore-unmatch でかいファイル.tar.gz' --prune-empty --tag-name-filter cat -- --all
git commit --amend -CHEAD
git push
|