9
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

githubでよく使っているコマンド

Last updated at Posted at 2015-04-28

#毎日たたく#

現在のブランチを確認する
git branch

developをチェックアウトする
git checkout develop

更新ファイル確認
git status

差分確認
git diff

git管理に追加
git add

リモートのdevelopをpullする
git pull origin develop

リモートのdevelopへpushする
git push origin develop

リモートのdevelopへ-f pushする
git push -f origin develop

gitのログを見る
git log

gitのコミットログを見る
git reflog

コミットする
git commit -a

developでリベースする
git rebase develop
git rebase --continue
git rebase --abort

ソースはそのままでひとつ前のコミットを取り消す
git reset --soft HEAD^

#たまにたたく

ソースの変更を取り消してひとつ前のコミットを取り消す
git reset --hard HEAD^

*特定のコミットのみを適用する
`git cherry-pick XXXXXXXX

ファイルを管理対象から外す
.gitignoreに追記
git rm --cached [ファイル名]
git rm -r --cached [フォルダ名]

#最初だけ

初期設定
git ini
git remote add origin https://XXXXX@github.com/XXXXX/XXXXX.git

色を付ける
git config --global color.ui true

#その他
1年経つまでは随時更新していきます。

9
4
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
9
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?