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.

git githubに挙げるまで 個人開発

Last updated at Posted at 2020-11-12

1「git init」でgitを立ち上げ
2「git add -A」
3「git commit」
4「git remote add origin https://~~~~」
4.5「git branch -M リモートブランチ名(main)」こいつが必要!!!

5 「git push -u origin リモートブランチ名(main)」

ファイル変更

ステージングエリア

ローカルリポジトリ

リモートリポジトリ

4.5のブランチとは?
https://git-scm.com/book/ja/v2/Git-%E3%81%AE%E3%83%96%E3%83%A9%E3%83%B3%E3%83%81%E6%A9%9F%E8%83%BD-%E3%83%96%E3%83%A9%E3%83%B3%E3%83%81%E3%81%A8%E3%81%AF

##git addで特定のファイルだけaddする

git add ~~~
git add main.js
...etc

https://26gram.com/git-add

途中から始める時

1.masterブランチにチェックアウトしてgit fetch
違う所を確認

確認方法

git diff origin/~~~

2.git merge origin/develop
masterにマージする

####behindがあったとき
今いるローカルブランチでリモートリポジトリをmergeする

git merge origin/develop

それからpushして再度MRを出す

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?