首页- 聚焦 > 详情

git常见命令

2023-08-02 15:00:09来源:哔哩哔哩

简单汇总下git常见命令:


(资料图片仅供参考)

create your own folder

mkdir aacd aa

verify that the current folder is 「not」tracked by Git:

git status

create a new SAS program file

echo "proc options; run;" > ./pgm/

initialize a new repo by using the 「git init」command

git init --initial-branch==main

This command creates a new git repository skeleton in a subdirectory named '.git' under the current directory. This meas that you're now able to start using other git commands in the current directory.

git configuration

git config --list --show-origin | grep user

or use this command in windows to check whether you set your name and email of github:

git config --list --show-origin | findstr user

optional: set your basic identification configuration settings

git config --global  "First-name Last-name"git config --global  emailAddress@provider

stage your project files with the 「git add」command

git add .git status

commit the files, we can use whether commit message (comment) we want

git commit -m 'initial commit'

edit files, we can just use the ">>" to append something to the existing file's content

echo "/* adding just a comment to the code */" >> ./pgm/

stage and commit the files with this shortcut (-am means stage all and commit together)

git commit -am "added a comment"

check repo history using the 「git log」command

git log --pretty=format:"%h %ae %s"

the 「pretty」option specifiers can make a more concise, readable history log with certain fields.

or can use the 「--oneline」option for a quick view:

git log --oneline

push to a remote repository

<!-- git remote add origin <remote_repo_url> --> #only do this oncegit push -u origin main

pull from a remote repository

git pull origin main

github链接:/Leslie-Lu/SASGit

Did you find this page helpful? Consider sharing it

标签:

上一篇:LNG击败BLG!LPL冒泡赛悬念还在继续,BLG不得不为JDG加油
下一篇:最后一页