代表的な分散バージョン管理ツールGitを効率的に管理するWebサービスです。
全体
11件 ∙ (13分)
1. 講座紹介
01:00
2. 会員登録
01:00
3. プロフィールを飾る
01:00
4. ギットをインストールする
01:00
5. リポジトリの作成
01:00
6. コミットの準備
01:00
7. ファイルを追加(add)する
01:00
8. コミットしてプッシュ
01:00
全体
142件
4.2
142件の受講レビュー
受講レビュー 55
∙
平均評価 5.0
5
It was a good time to learn git quickly. How to use git - Right-click on the folder to commit and select git-bash to open the console window - git init - git status - git remote add origin https://github.com/guriguri113/opensesame.git (remote repository to commit) - git status (files that have not been committed yet are marked in red) - git add. Add all files in the folder - git config --global user.email "guriguri1576@naver.com" (Enter your email address since this is your first commit) - git config --global user.name "bingbingpa" (Enter your ID) - git commit -m 'tetete' (Comment on the commit) - git push -u origin master (Commit!) - After modifying the file - git add . - git commit -m 'Comment contents' - git push - git checkout -b beta (Branch name) - git branch (Check the current branch) - After writing the file - git add . - git commit -m 'comment contents' - git push -u origin beta(branch name) - git merge beta(branch name to merge) - git push
You've organized all the essential commands from git init to git push very well! Thank you :)
受講レビュー 113
∙
平均評価 5.0
受講レビュー 37
∙
平均評価 5.0
受講レビュー 7
∙
平均評価 5.0
受講レビュー 2
∙
平均評価 5.0