# LearningGIT **Repository Path**: jackloner/LearningGIT ## Basic Information - **Project Name**: LearningGIT - **Description**: learning git via study by myself - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-05 - **Last Updated**: 2022-02-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # LearningGIT # Learning git via questions First of all,learn with question is most valid.follow sentences is my result that will can help you fast. * Great a repository by yourself via **git init** :smile: NOTE: The repository **NOTE** on remote which provide a remote repository. * Through **git add .** add all file to **Local Stage**. NOTE:These files **NOT** in remote rep.:boom: * **git status** can help checkout files status before eg:modified before **git add** or modified after **git add** :satisfied: * if i want to cancel **git add** can use **git reset HEAD ** instruction roll up status. **NOTE** :blush: { all files on local stage.} * then, **git commit -m "..."** push commit to local stage * this moment, can use **git reset --soft HEAD^** cancel commit not change commit. ![study method](https://github.com/onloner2012/LearningGIT/blob/master/picture/methods.png)