Command Line 4
Posted 阿难的机器学习计划
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Command Line 4相关的知识,希望对你有一定的参考价值。
Using git.
1. Initialize git:
Type git init in the desitnated folder you want to initialize.
2. Initializing a Git repository will create a folder called .git
inside the repository folder:
3. Git status
4. Add git to the stage by using git add add_file
5. Configuring git by tying:
git config --global user.email "your.email@domain.com"
git config --global user.name "Your name"
6. A commit is a way to store a snapshot of the files in the folder at a certain point in time.
git commit -m "Initial commit. Added script.py and README.md" #make a commit with a informative message.
7. Use git log to check the git history.
8. Use git log --stat to check the detail of the git history.
以上是关于Command Line 4的主要内容,如果未能解决你的问题,请参考以下文章
idea报错:Error running $classname: Command line is too long. Shorten command line for $classname.(示例代码