「git show コミット番号」で全ての差分を表示することができます。
ただ、差分ではなく、ファイル一覧のみを表示したい時があります。
以下のコマンドを使えば、コミット内の全てのファイルをリストアップすることができます。
「git show コミット番号」で全ての差分を表示することができます。
ただ、差分ではなく、ファイル一覧のみを表示したい時があります。
以下のコマンドを使えば、コミット内の全てのファイルをリストアップすることができます。
git diff -tree --no-commit- id --name-only -r [コミット番号] 例: git diff -tree --no-commit- id --name-only -r 1e3698d5fee9d3cdce68b6a708ba54efc47513d3 |
git checkout -b local_branch_name origin/remote_branch_name |
$ git push -u origin master
Username for 'https://github.com':
https://github.com/TEST/project-test.git
https://*yourname*@github.com/TEST/project-test.git
git rm -r --cached .
git add .
git commit -m "fixed untracked files"
git reset --hard <commit-hash>
git push -f origin master
git config credential.helper store
bower update xxx-frontend
git log --committer=[ユーザ名]
もしくはgit log --author=[ユーザ名]