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 基礎コマンド まとめ

Last updated at Posted at 2022-06-02

まとめ
(自分が入力したことがあることのみ)

分かっている概念だから別にコマンドの定義は作成しておりません。

git init : git生成
git clone URL : コードが受入
git checkout branch_name:ブランチ選択
git branch branch_name :ブランチ生成
git branch -a : ローカルブランチリストを見る
git branch -m branch_namechange_branch_name : ブランチ名変更
git branch -d branch_name : ブランチ削除
git add path : 修正したコードを選択
git add .  : 全部選択
git commit -m "commit_description":選択したコード説明書(gitcommit-m"内容")
git pull : gitサーバーで最新コードを受け取ってmergeする
git fetch : gitサーバーから最新コードを受け取る
git config-globaluser.name"user_name" : gitアカウント名変更
git config-globaluser.email" : gitアカウントメールを変更する
git stash /gitstashsave"description" : 作業コードを一時保存し、ブランチを変える

git branch-set-upstream-to=remote_path/branch_name : gitpullnotrackinginfoエラー解決
$ git push --set-upstream origin master

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?