在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):IEEE-NITK/HacktoberFest开源软件地址(OpenSource Url):https://github.com/IEEE-NITK/HacktoberFest开源编程语言(OpenSource Language):C 61.9%开源软件介绍(OpenSource Introduction):HacktoberFest-NITKHere is a basic outline of how to write Git instructions in the repository! Tell Git who you are Configure the author name and email address to be used with your commits. Note that Git strips some characters (for example trailing periods) from user.name.
Create a new local repository
Check out a repository Create a working copy of a local repository:
For a remote server, use:
Add files Add one or more files to staging (index):
Add all files to staging area:
Commit Commit changes to head (but not yet to the remote repository):
Commit any files you've added with git add, and also commit any files you've changed since then:
Push Send changes to the master branch of your remote repository:
Status List the files you've changed and those you still need to add or commit:
Connect to a remote repository If you haven't connected your local repository to a remote server, add the server to be able to push to it:
List all currently configured remote repositories:
Branches Create a new branch and switch to it:
Switch from one branch to another:
List all the branches in your repo, and also tell you what branch you're currently in:
Delete the feature branch:
Delete branch from GitHub
Push the branch to your remote repository, so others can use it:
Push all branches to your remote repository:
Delete a branch on your remote repository:
Update from the remote repository Fetch and merge changes on the remote server to your working directory:
To merge a different branch into your active branch:
View all the merge conflicts: View the conflicts against the base file: Preview changes, before merging:
After you have manually resolved any conflicts, you mark the changed file:
Remotes Remotes are useful for tracking repositories which are present on multiple Git servers(such as Github, Bitbucket, etc.) You can add multiple remote URLs
Similarly, you can remove added remotes, such as:
Undo local changes If you mess up, you can replace the changes in your working tree with the last content in head: Changes already added to the index, as well as new files, will be kept.
Instead, to drop all your local changes and commits, fetch the latest history from the server and point your local master branch at it, do this:
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论