Git笔记

Git命令

第一次系统设置

将姓名和电子邮件设置到Git中。

$ git config --global user.name "自分の名前"
$ git config --global user.email your.email@example.com

将git co设置为checkout的别名。

$ git config --global alias.co checkout

将Git配置为在一定时间内保持密码

$ git config --global credential.helper "cache --timeout=86400"

Git会在86,400秒(即1天)内保存密码。

首次进行仓库设置

初始化新的存储库

$ cd ~/environment/hello_app    # Just in case you weren't already there
$ git init

将项目所有文件(除了.gitignore文件)添加到仓库中。

$ git add -A

提交

$ git commit -m "Initialize repository"

参考查看提交信息的历史记录。

$ git log

将GitHub添加到远程origin并将该存储库推送至其中。

$ git remote add origin https://github.com/<あなたのGitHubアカウント名>/hello_app.git
$ git push -u origin main

-u是用于设置上游的选项。

分支、编辑、提交、合并

分岐

$ git checkout -b modify-README

$ git branch

请检查分支的状态。

$ git status

以一次性的方式提交更改

$ git commit -a -m "Improve the README file"

合并

$ git checkout master
$ git merge modify-README

删除主题分支

$ git branch -d modify-README

$ git push
广告
将在 10 秒后关闭
bannerAds