-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
常用 git 操作 #71
Comments
Command line instructions
Create a new repository
Existing folder
Existing Git repository
|
git pull origin xxxbranch --allow-unrelated-histories commit with husky disabled
|
查看/取消代理
|
处理 fatal: the remote end hung up unexpectedly方法一: 修改提交缓存大小为500M,或者更大的数字 git config --global http.postBuffer 524288000
# some comments below report having to double the value:
git config --global http.postBuffer 1048576000 或者在克隆/创建版本库生成的 .git目录下面修改生成的config文件增加如下:
然后重新推送。 方法二: 配置git的最低速度和最低速度时间: git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999 --global配置对当前用户生效,如果需要对所有用户生效,则用--system |
根据 token 设置 remotegit remote set-url origin https://<personal_token>@github.com/yubaoquan/hw-6-1.git |
设置默认主分支git config --global init.defaultBranch xxx 初始化并设置分支名git init --initial-branch=xxx
git init -b xxx |
windows 配置 SSH key要配置 gitlab 的 ssh key 用于代码提交,你可以参考以下步骤: 打开本地 git bash,使用如下命令生成 ssh 公钥和私钥对: ssh-keygen -t rsa -C '[email protected]' 其中 -C 参数是你的邮箱地址,如果你不想设置密码,可以直接回车。 打开 打开 gitlab,找到 Profile Settings --> SSH Keys --> Add SSH Key,并把上一步中复制的内容粘贴到 Key 所对应的文本框,在 Title 对应的文本框中给这个 ssh key 设置一个名字,点击 Add key 按钮。 测试是否成功,在命令行中输入: ssh -T [email protected] 如果显示 welcome,则表示安装成功。 |
删除文件/文件夹, 保留在本地文件系统
设置用户信息
修改上个commit的用户信息
查看当前 commit
branch
添加远程分支
设置远程分支
更新远程分支
删分支
改分支名
同步远程分支
tag
添加/推送tag
查看 tag 列表
The text was updated successfully, but these errors were encountered: