Một khóa học nơi bạn có thể tìm hiểu những điều được sử dụng nhiều nhất về GitHub trong một khoảng thời gian rất ngắn!
Dịch vụ web này quản lý hiệu quả Git, công cụ kiểm soát phiên bản phân tán hàng đầu. Tìm hiểu những cách sử dụng GitHub phổ biến nhất một cách đơn giản và nhanh chóng.
Tất cả
11 bài giảng ∙ (13phút)
Tất cả
142 đánh giá
4.2
142 đánh giá
Đánh giá 55
∙
Đánh giá trung bình 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 :)
Đánh giá 116
∙
Đánh giá trung bình 5.0
Đánh giá 37
∙
Đánh giá trung bình 5.0
Đánh giá 7
∙
Đánh giá trung bình 5.0
Đánh giá 2
∙
Đánh giá trung bình 5.0