Table of Contents
GIT在Linux上的安装和使用简介,gitlinux安装简介
linux下版本管理git的安装方法,安装包,以及详细的使用介绍,高分重谢
linux ,ubuntu使用git问题怎让git记录我的版本?
Home php教程 php手册 GIT在Linux上的安装和使用简介,gitlinux安装简介

GIT在Linux上的安装和使用简介,gitlinux安装简介

Jun 13, 2016 am 09:28 AM
git

GIT在Linux上的安装和使用简介,gitlinux安装简介

<span>GIT在Linux上的安装和使用简介

解压后切换到其目录
$ tar xvfj git</span>-1.7.6.tar.<span>bz2
$ cd git</span>-1.7.6<span>
 
使用默认配置进行安装,如果想修改配置,可以使用 </span>./configure --<span>help 来获取帮助
 
$ </span>./<span>configure
$ make
$ make install
 
</span>2<span>、初始化配置
GIT默认安装在 </span>/usr/local/<span>bin ,安装之后可以验证一下是否安装好
 
$ whereis git
git</span>: /usr/local/bin/<span>git
$ git  </span>--<span>version
git version </span>1.7.6<span>
$ git  </span>--<span>help
 
首先需要指定用户名和电子邮件地址
 
$ git config  </span>--<span>global</span> user.<span>name &ldquo;GIT Admin&rdquo;
$ git config  </span>--<span>global</span> user.emal obugs.net@gmail.<span>com
 
再验证一下配置信息
  www</span>.2cto.<span>com  
$ git config  </span>--<span>list</span><span>
user</span>.name=<span>GIT Admin
user</span>.email=obugs.net@gmail.<span>com
core</span>.repositoryformatversion=0<span>
core</span>.filemode=<span>true</span><span>
core</span>.bare=<span>false</span><span>
core</span>.logallrefupdates=<span>true</span><span>
 
其实这些配置是存放在个人主目录下的 </span>.<span>gitconfig 文件中的
 
$ cat </span>~/.<span>gitconfig
[user]
name </span>=<span> GIT Admin
email </span>= obugs.net@gmail.<span>com
 
</span>3<span>、建立工程
本地存储的任何一个目录都可以建立GIT工程,如果已有工程位于 </span>/home/obugs/projects/<span>orangebugs 目录,就可以把这目录定义为GIT工程
$ cd </span>/home/obugs/projects/<span>orangebugs
$ git init
Initialized </span><span>empty</span> Git repository in /home/obugs/projects/orangebugs/.git/<span>
 
这样就建立了一个名为 </span>.<span>git 的文件夹,这就是GIT用来存储信息和跟踪改动的文件夹。
  www</span>.2cto.<span>com  
$ ls </span>-altr .<span>git
total </span>40<span>
drwxrwxr</span>-x 4 git git 4096 Aug 13 22:39<span> refs
drwxrwxr</span>-x 4 git git 4096 Aug 13 22:39<span> objects
drwxrwxr</span>-x 2 git git 4096 Aug 13 22:39<span> info
drwxrwxr</span>-x 2 git git 4096 Aug 13 22:39<span> hooks
</span>-rw-rw-r -- 1 git git 23 Aug 13 22:39<span> HEAD
</span>-rw-rw-r -- 1 git git 73 Aug 13 22:39<span> description
</span>-rw-rw-r -- 1 git git 92 Aug 13 22:39<span> config
drwxrwxr</span>-x 2 git git 4096 Aug 13 22:39<span> branches
drwxrwxr</span>-x 36 git git 4096 Aug 13 22:39 ..<span>
drwxrwxr</span>-x 7 git git 4096 Aug 13 22:39 .
 
4<span>、向工程添加和提交文件
这些动作和CVS、SVN等操作类似
 
$ git add </span>*.java *.<span>c
$ git commit </span>-<span>m &lsquo;Initial upload of the project&rsquo;
create mode </span>100755 Orangebugs.<span>java
create mode </span>100755 pwm/ui/DataManager.<span>java
create mode </span>100755 pwm/ui/PasswordFrame.<span>java
create mode </span>100755 pwm/tools/StrongEncryption.<span>java
create mode </span>100755 pwm/tools/PasswordStrength.<span>java
</span>..<span>
 
注意如果之前没有使用 git config 指定用户名和电子邮件地址,这里会报错
$ git commit </span>-m &lsquo;Initial upload of the project'<span>
 
*** Please tell me who you are.
  www.2cto.com  
Run
 
git config  --global user.email &ldquo;you@example.com&rdquo;
git config  --global user.name &ldquo;Your Name&rdquo;
 
to set your account&rsquo;s default identity.
Omit  --global to set the identity only in this repository.
 
fatal: empty ident not allowed
 
5、更改文件和提交改动
编辑文件、添加或者删除了一些字段
$ vi Orangebugs.java
 
查看和GIT仓库中的文件相比有了那些改动
 
$ git diff
diff  --git a/Orangebugs.java b/Orangebugs.java
index 6166ed1..fd82d32 100644
&mdash; a/Orangebugs.java
+++ b/Orangebugs.java
@@ -2,7 +2,7 @@
- public counter=10
+ public counter=55
 
如果要提交,需要先确保将文件添加到了临时区域(staging area)然后才能提交,提交时会自动打开系统的默认编辑器,用户添加一些注释后保存并退出编辑器的时候,这些注释就同时提交到仓库中去了
  www.2cto.com  
$ git add Orangebugs.java
$ git commit
[master 80f10a9] Added password strength meter functionality
1 files changed, 56 insertions(+), 7 deletions(-)
或者,简单一点的方法是使用 git commit -a 把上面两个命令合二为一。
6、查看状态和查看注释
如果本地的文件和远端GIT仓库上的文件相比没有任何改动,则
 
$ git status
# On branch master
nothing to commit (working directory clean)
 
如果本地做了改动但是没有提交,则
 
$ git status
# On branch master
# Changes not staged for commit:
# (use &ldquo;git add &hellip;&rdquo; to update what will be committed)
# (use &ldquo;git checkout &mdash; &hellip;&rdquo; to discard changes in working directory)
#
# modified: Orangebugs.java
#
no changes added to commit (use "git add" and/or "git commit -a")
 
另外,可以用下面的命令查看文件历史和以往的注释
 
$ git log Orangebugs.java
commit c919ced7f42f4bc06d563c1a1eaa107f2b2420d5
Author: GIT Admin  www.2cto.com  
Date: Sat Aug 13 22:54:57 2011 -0700
 
Added password strength meter functionality
 
commit c141b7bdbff429de35e36bafb2e43edc655e9957
Author: GIT Admin
Date: Sat Aug 13 20:08:02 2011 -0700
 
Initial upload of the project</span>
Copy after login

linux下版本管理git的安装方法,安装包,以及详细的使用介绍,高分重谢

Google一下到处都是
如果你用Ubuntu的话在终端打sudo apt-get install git就装好了
用arch的话打sudo pacman -S git
各种包管理应该都可以 看你用哪种了
自己下代码编译也成
使用的话一两句话说不清 自己去Google教程吧
 

linux ,ubuntu使用git问题怎让git记录我的版本?

用分支或者标签实现,不过看上去标签应该更加合适
 

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to install deepseek How to install deepseek Feb 19, 2025 pm 05:48 PM

There are many ways to install DeepSeek, including: compile from source (for experienced developers) using precompiled packages (for Windows users) using Docker containers (for most convenient, no need to worry about compatibility) No matter which method you choose, Please read the official documents carefully and prepare them fully to avoid unnecessary trouble.

Summary of FAQs for DeepSeek usage Summary of FAQs for DeepSeek usage Feb 19, 2025 pm 03:45 PM

DeepSeekAI Tool User Guide and FAQ DeepSeek is a powerful AI intelligent tool. This article will answer some common usage questions to help you get started quickly. FAQ: The difference between different access methods: There is no difference in function between web version, App version and API calls, and App is just a wrapper for web version. The local deployment uses a distillation model, which is slightly inferior to the full version of DeepSeek-R1, but the 32-bit model theoretically has 90% full version capability. What is a tavern? SillyTavern is a front-end interface that requires calling the AI ​​model through API or Ollama. What is breaking limit

Delphi Digital: How to change the new AI economy by parsing the new ElizaOS v2 architecture? Delphi Digital: How to change the new AI economy by parsing the new ElizaOS v2 architecture? Mar 04, 2025 pm 07:00 PM

ElizaOSv2: Empowering AI and leading the new economy of Web3. AI is evolving from auxiliary tools to independent entities. ElizaOSv2 plays a key role in it, which gives AI the ability to manage funds and operate Web3 businesses. This article will dive into the key innovations of ElizaOSv2 and how it shapes an AI-driven future economy. AI Automation: Going to independently operate ElizaOS was originally an AI framework focusing on Web3 automation. v1 version allows AI to interact with smart contracts and blockchain data, while v2 version achieves significant performance improvements. Instead of just executing simple instructions, AI can independently manage workflows, operate business and develop financial strategies. Architecture upgrade: Enhanced A

What are the Grayscale Encryption Trust Funds? Common Grayscale Encryption Trust Funds Inventory What are the Grayscale Encryption Trust Funds? Common Grayscale Encryption Trust Funds Inventory Mar 05, 2025 pm 12:33 PM

Grayscale Investment: The channel for institutional investors to enter the cryptocurrency market. Grayscale Investment Company provides digital currency investment services to institutions and investors. It allows investors to indirectly participate in cryptocurrency investment through the form of trust funds. The company has launched several crypto trusts, which has attracted widespread market attention, but the impact of these funds on token prices varies significantly. This article will introduce in detail some of Grayscale's major crypto trust funds. Grayscale Major Crypto Trust Funds Available at a glance Grayscale Investment (founded by DigitalCurrencyGroup in 2013) manages a variety of crypto asset trust funds, providing institutional investors and high-net-worth individuals with compliant investment channels. Its main funds include: Zcash (ZEC), SOL,

As top market makers enter the crypto market, what impact will Castle Securities have on the industry? As top market makers enter the crypto market, what impact will Castle Securities have on the industry? Mar 04, 2025 pm 08:03 PM

The entry of top market maker Castle Securities into Bitcoin market maker is a symbol of the maturity of the Bitcoin market and a key step for traditional financial forces to compete for future asset pricing power. At the same time, for retail investors, it may mean the gradual weakening of their voice. On February 25, according to Bloomberg, Citadel Securities is seeking to become a liquidity provider for cryptocurrencies. The company aims to join the list of market makers on various exchanges, including exchanges operated by CoinbaseGlobal, BinanceHoldings and Crypto.com, people familiar with the matter said. Once approved by the exchange, the company initially planned to set up a market maker team outside the United States. This move is not only a sign

Significantly surpassing SFT, the secret behind o1/DeepSeek-R1 can also be used in multimodal large models Significantly surpassing SFT, the secret behind o1/DeepSeek-R1 can also be used in multimodal large models Mar 12, 2025 pm 01:03 PM

Researchers from Shanghai Jiaotong University, Shanghai AILab and the Chinese University of Hong Kong have launched the Visual-RFT (Visual Enhancement Fine Tuning) open source project, which requires only a small amount of data to significantly improve the performance of visual language big model (LVLM). Visual-RFT cleverly combines DeepSeek-R1's rule-based reinforcement learning approach with OpenAI's reinforcement fine-tuning (RFT) paradigm, successfully extending this approach from the text field to the visual field. By designing corresponding rule rewards for tasks such as visual subcategorization and object detection, Visual-RFT overcomes the limitations of the DeepSeek-R1 method being limited to text, mathematical reasoning and other fields, providing a new way for LVLM training. Vis

Bitwise: Businesses Buy Bitcoin A Neglected Big Trend Bitwise: Businesses Buy Bitcoin A Neglected Big Trend Mar 05, 2025 pm 02:42 PM

Weekly Observation: Businesses Hoarding Bitcoin – A Brewing Change I often point out some overlooked market trends in weekly memos. MicroStrategy's move is a stark example. Many people may say, "MicroStrategy and MichaelSaylor are already well-known, what are you going to pay attention to?" This is true, but many investors regard it as a special case and ignore the deeper market forces behind it. This view is one-sided. In-depth research on the adoption of Bitcoin as a reserve asset in recent months shows that this is not an isolated case, but a major trend that is emerging. I predict that in the next 12-18 months, hundreds of companies will follow suit and buy large quantities of Bitcoin

The latest tutorial on how to install the ios version installation package of Ouyi The latest tutorial on how to install the ios version installation package of Ouyi Feb 21, 2025 pm 07:36 PM

This guide will provide a comprehensive overview of how to install the latest installation packages from EV Exchange on iOS devices. Ouyi Exchange is a leading cryptocurrency trading platform that provides a wide range of cryptocurrency trading, asset management and investment services. By following the step-by-step instructions provided in this guide, users can easily and easily install the Euyi Exchange app on their iPhone or iPad. This guide is suitable for all iOS devices, from older models to the latest generation, and includes clear screenshots and detailed instructions to ensure a seamless installation process.

See all articles