23
20

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で更新する方法

Last updated at Posted at 2019-06-17

全ファイルをGitHubで更新する方法

勉強始めたての頃は自分のローカル環境にソースコードを保存してたのでGitHubを使うことなくて気にしてなかったのですが、チーム開発を始めた時に「GitHub 更新」ってググっても出てこず「?」となりました。
要はコミットしてプッシュすることを更新と認識してたからそもそもの認識間違い。
特に全ファイル対象にする場合は以下のようにするとできたので自分の備忘録としてメモします。

ターミナル
$ git add .  # これで全ファイル対象に更新したい場合に使う。「.」が大事
ターミナル
$ git commit -m "20180617" # ""の中は任意の言葉で。僕は更新日を書いてます
ターミナル
$ git remote add origin https://github.com/----.git # ここはリモートリポジトリのURLを入力
ターミナル
$ git push origin master #プッシュ完了

結論:更新って言わずにコミット&プッシュという言葉を使うようにします!!(当たり前か)

23
20
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
23
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?