Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to install git in linux system and what are the common commands of git?

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article introduces the relevant knowledge of "how to install git in linux system and what are the common commands of git". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

1 install git

The copy code is as follows:

$sudo aptitude install git

$sudo aptitude install git-doc git-svn git-email git-gui gitk

The git package contains most of the git commands and is a required package, and the second line command is also a git package, but it is released separately and you can choose to install it.

2 download the git library of the remote project to local

[code]

$git clone git:// remote git library address filename

[code]

Filename is your local folder name. Clone the remote library to this folder. This file is created by yourself.

3 commonly used commands

(1) git branch to view local branches

(2) git branch-a view remote branches

(3) git checkout branchname switching branch

(4) git add yourfile

(5) git commit-a-m "description" submits your current development to the temporary storage area, which can be understood as your local git library.

(6) git pull update, if several people develop on the same branch at the same time, it may cause synchronization, causing their local git library to lag behind or remote git library ahead of schedule. At this time, update your local library.

(7) submit the code developed by yourself to the corresponding remote distribution by git push.

(8) git status to view the workspace status and what actions have been done on this branch

(9) it is useful for git log to view the operation log.

(10) git merge merges branches. The modules developed by yourself will eventually be merged into the total branches of the project. This is to switch to the main branch of the project first, and then git merge its own branches.

(11) git branch-d yourbranch d yourbranch deletes local branches

(12) git push origin: yourbranch deletes remote branch

This is the end of the content of "how to install git in linux system and what are the common commands of git". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report