LoginSignup
2
2

More than 5 years have passed since last update.

git コマンドメモ

Posted at

git でよく使うコマンドメモ

$git status
$git fetch
$git pull
$git add パス
$git add .
$git commit -m"コミットメッセージ"
$git commit -v
$git push
$git checkout ブランチ名
$git merge ブランチ名
$git branch ブランチ名
$git stash
$git stash apply
$git stash clear
$git log
$git show
$git grep "文字列" -- "*.ファイル形式"
$git grep "<<< HEAD"
$git blame
$git reset --soft
$git reset --hard
$git reset --mixed
$git reset HEAD^
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2