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 1 year has passed since last update.

Git 復習 その2

Posted at

はじめに

gitを扱う中で、経験した間違いをメモすることにしました。

間違えた内容

リポジトリを作るタイミング

プログラムを書き終わった後に、githubにリモートリポジトリを作り始めることが度々あり、git status を使うと

fatal: not a git repository (or any of the parent directories): .git

と表示されて戸惑いました。

原因は、git clone は、リモートリポジトリと同名のフォルダを、使用中のフォルダ内に作る といった内容を忘れていたからです。

  1. リモートリポジトリを作る
  2. git cloneで、使用中のフォルダ内に、リポジトリをコピーする(新しくリモートリポジトリ名のフォルダが作成される
  3. ファイル等を作成し、add, commit, pushなど作業を進める。

後で、ファイルを移動させなくていいので、先にこの流れでやった方が間違えにくかったと思いました。

最後に

チーム開発では、分担して作業するので、git checkout, git brunch, git pull などを学習したい。

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?