Git installation and use under Linux
Installation steps
First, you need to confirm whether there is git in Linux. You can use the
git
command in the computer to check. If not, use the commandsudo apt-get install git
to install it.
Recommended (free): Git tutorial
- Configure git after the installation is complete , you need to ensure that the connection is your open source China account, you need the commands
git config --global user.name "XXX"
andgit config --global user.eamil "email address"
After the configuration is completed, you need to create a public key for verification (the same as under windows). Each user needs an independent public key. to make sure. Use the command
ssh-key -C 'your email address' -t rsa
, and the corresponding key filewill be created in the user directory
~/.ssh/
Then use the command
cd ~/.ssh
to enter the folder and usegedit id_rsa.pub
to openid_rsa. pub
file. The content in the file is the ssh public key, copy it all. Open the open source China website, choose to add the ssh public key, enter the content of the title as you like, and then paste the copied content into it and you are done.You can use the command
ssh -T git@git.oschina.net
to test whether it is successful.
Need to pay attention during installation
Be careful to use the command when configuring
ssh-keygen -C 'you email address@gmail.com' -t rsa
(note that there is no space between ssh and -keygen)After entering this command There will be an input option of
Enter file in which to save the key (/home/haohao/.ssh/id_rsa)
. Don’t worry about it. This is to choose whether to create the file at the default address or in a new input place. Create (new file name), press Enter, and you can create a newssh file
at the default address.
- ##Be sure to use
when opening the
id_rsa.pub
file gedit id_rsa.pubOtherwise an error may occur.
- When entering the file
~/.ssh
folder, just use the command to enter. If you use the mouse to search for it from my computer, you may not be able to find it. Because this folder
.sshis a hidden folder by default. So if you can't find it, you don't have to worry that it's a computer problem, it's just hidden.
The operation after using Git
- is the same as the operation under Windows. First create a folder yourself , copy the typed code into it, first use the
git init
command to initialize a git warehouse, and then enter
git add .(note:
addand
. There are spaces between) to add the file, enter
git commit -m "comment" to submit to the warehouse.
- Enter
git remote add origin https://git.oschina.net/your username/project name.git
, enter your account and password.
git push origin master
to complete the push.
- Another way to push code was discovered when working together as a team to complete the same project. I don’t know if the process is legal or not, but the result is the same and it works repeatedly.
First
git clone project address
: The project will be downloaded and stored in the folder you created.Then copy the folder of the code that needs to be submitted to the downloaded folder. Use the commands
git status
,git add XXX.File format name
(if it is a folder, you do not need a file format name, just have a file name),git status
,git commit -m"comment"
,git push origin master
Enter the account number and information to complete the push. It will be faster, and the command is simpler than the first one, making it easier to remember and improve efficiency.
Experience
I actually came into contact with the use of git last semester. This is a tool that can quickly improve the work of programmers. program. I also came into contact with Git in the Linux environment this semester, but I have never practiced it due to my laziness. I always felt that if I know git under windows, I will definitely know git under the Linux environment. But I still haven’t mastered it, and there are still unexpected problems. For example, although I have been exposed to git under Linux before, I still have problems when configuring it myself, and I still need to ask my classmates for advice.
And when you simply enter a command, you will make a mistake, such as returning to the upper folder cd ..
I did not enter a space when typing, and then an error was reported that there was no such command, and there was no such command. Don't know where I went wrong. Including cd ~
to return to the previous directory, cd -
to return to a certain directory, all require spaces.
Although I have discovered a new way to use git that can speed up efficiency, if I don’t have a solid grasp of basic knowledge, everything is still 0. Learning computer operating system knowledge still requires hard work and study. This aspect of knowledge must be practiced on the computer. If you don’t operate it, you will never know whether you have mastered it.
The above is the detailed content of Installation and use of git under Linux. For more information, please follow other related articles on the PHP Chinese website!

linux设备节点是应用程序和设备驱动程序沟通的一个桥梁;设备节点被创建在“/dev”,是连接内核与用户层的枢纽,相当于硬盘的inode一样的东西,记录了硬件设备的位置和信息。设备节点使用户可以与内核进行硬件的沟通,读写设备以及其他的操作。

区别:1、open是UNIX系统调用函数,而fopen是ANSIC标准中的C语言库函数;2、open的移植性没fopen好;3、fopen只能操纵普通正规文件,而open可以操作普通文件、网络套接字等;4、open无缓冲,fopen有缓冲。

端口映射又称端口转发,是指将外部主机的IP地址的端口映射到Intranet中的一台计算机,当用户访问外网IP的这个端口时,服务器自动将请求映射到对应局域网内部的机器上;可以通过使用动态或固定的公共网络IP路由ADSL宽带路由器来实现。

在linux中,交叉编译是指在一个平台上生成另一个平台上的可执行代码,即编译源代码的平台和执行源代码编译后程序的平台是两个不同的平台。使用交叉编译的原因:1、目标系统没有能力在其上进行本地编译;2、有能力进行源代码编译的平台与目标平台不同。

在linux中,eof是自定义终止符,是“END Of File”的缩写;因为是自定义的终止符,所以eof就不是固定的,可以随意的设置别名,linux中按“ctrl+d”就代表eof,eof一般会配合cat命令用于多行文本输出,指文件末尾。

在linux中,可以利用“rpm -qa pcre”命令判断pcre是否安装;rpm命令专门用于管理各项套件,使用该命令后,若结果中出现pcre的版本信息,则表示pcre已经安装,若没有出现版本信息,则表示没有安装pcre。

linux查询mac地址的方法:1、打开系统,在桌面中点击鼠标右键,选择“打开终端”;2、在终端中,执行“ifconfig”命令,查看输出结果,在输出信息第四行中紧跟“ether”单词后的字符串就是mac地址。

在linux中,rpc是远程过程调用的意思,是Reomote Procedure Call的缩写,特指一种隐藏了过程调用时实际通信细节的IPC方法;linux中通过RPC可以充分利用非共享内存的多处理器环境,提高系统资源的利用率。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version
Chinese version, very easy to use
