0
0

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 3 years have passed since last update.

コマンドでGitHub連携/ git stashシンプルな使い方

Last updated at Posted at 2020-12-13

連携するたびにやり方を忘れるので備忘録として記録しておく。git stashはおまけ。

GitHub連携の手順

アカウント名とメールアドレスを登録

git config --global user.name "GitHubアカウント名"
git config --global user.email "登録メールアドレス"

登録されているか確認

git config --list

Gitでリポジトリを作成

git init

GitHubと連携

git remote add origin GitHubリポジトリのURL

リモートリポジトリの変更

新しいリモートURLに変更する

git remote set-url origin 新しいURL

変更したリモートURLを確認する

git remote -v

git 一時退避

前回commitした時点から変更した差分を一時的に保存し退避する(名前不要のときはgit stash のみで可)

git stash save "save名"

これまで退避させた変更の一覧表示

git stash list

退避させていた差分を再び反映させる。番号はgit stash listから確認。

git stash apply stash@{番号}
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?