Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
Svn-to-Git
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
王进波
Svn-to-Git
Commits
4f901e62
Commit
4f901e62
authored
Aug 23, 2018
by
王进波
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
b57ee44e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
25 deletions
+0
-25
InstallGitWindows.md
doc/FromSVNToGit/InstallGitWindows.md
+0
-25
No files found.
doc/FromSVNToGit/InstallGitWindows.md
View file @
4f901e62
...
...
@@ -96,27 +96,3 @@ Git-Windows 下载地址[Git-2.18.0-64-bit.exe](../../%E5%B7%A5%E5%85%B7/Git-2.1
-
同样的,我们也可以用Windows的 CMD 命令行工具来执行 Git 命令
### 安装完成以后需要执行的配置
第一步,配置 Git 的用户名和邮箱,这两项配置会在我们提交代码时被添加到提交信息中,这样我们查看历史的时候就可以看到这个提交作者的信息了,这两项时Git必须的设置
-
`git config --global user.name <你的名字>`
-
`git config --global user.email <你的邮箱地址>`
第二步,需要关闭 HTTPS 的验证,我们的Gitlab Server 的 HTTPS 使用的 ssl 证书是我们自己签发的,没有经过证书机构,因此当我们在浏览器中打开
`https://civpub.vicp.net:8443 `
的时候会因为证书不可信被浏览器提示危险网站 ,同样,我们在用 Git 通过 Https 协议下载代码的时候,Git 也会对 Https 的 ssl 证书进行验证,这时候会因为证书不可信而中断,我们需要手动把这一步验证关掉,在命令行中执行下面的配置操作,然后重新
`clone`
-
`git config --global http.sslVerify false`
第三步,检查我们的
`core.autocrlf`
和
`core.safecrlf`
配置是否正确
-
`git config --global core.autocrlf false`
要设置为false,这样 Git 会按照原样
`检出`
和
`commit`
代码,不会自动转换
-
`git config --global core.safecrlf true`
要设置为true,当 Git 检测到我们的代码中存在
`CRLF`
和
`LF`
混用的情况时会组织我们提交。
第四步,允许Windows符号链接
-
`git config --global core.symlinks true`
,这里设置为true才可以正确下载我们部分代码项目
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment