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

よく使うgitいろいろ

Last updated at Posted at 2019-09-17

プログラミング6ヶ月のサル初心者がよく使うgitコマンド

1. チケットを渡されたら

マスターを更新する

git checkout master
Git pull origin master

2.ブランチを作って、そのブランチに行く

git branch
 Git checkout -b <ブランチ名>

3.チケットの依頼内容に沿ってコードを書く...

4.コミットの準備をする

#####ファイルを全部選択する

git add .

#####処理内容ごとに区切って選択する

git add -p

5. コミットする

git commit -m '<コミット名>'

6. プッシュする準備をする

プッシュする際ブランチ名を入力する必要があるためここで持っている
ブランチ名を確認する

git branch

7.プッシュする

Git push origin <ブランチ名>
1
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
1
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?