Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
asset-app
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
asset-app
Commits
2d0cc45d
Commit
2d0cc45d
authored
Mar 17, 2023
by
liulei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add README
parents
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
README.md
+25
-0
No files found.
README.md
0 → 100644
View file @
2d0cc45d
# git命令 ##
>拉取远程仓库主干代码
```
sh
git pull origin master
```
>将本地已提交代码推送至远程仓库
```
sh
git push origin master
```
>忽略某文件修改不提交到远程仓库
```
sh
git update-index
--assume-unchanged
[
file-path]
eg: git update-index
--assume-unchanged
FMP-WEB
\s
rc
\m
ain
\r
esources
\j
dbc.properties
```
>取消忽略某文件提交到远程仓库
```
sh
git update-index
--no-assume-unchanged
[
file-path]
eg: git update-index
--no-assume-unchanged
FMP-WEB
\s
rc
\m
ain
\r
esources
\j
dbc.properties
```
>回退版本后提交到远程仓库
```
sh
git push
-f
-u
origin
[
branch]
eg: git push
-f
-u
origin master
```
\ 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