阿達


D:\Ds\app>git init
Initialized empty Git repository in D:/Ds/app/.git/

D:\Ds\app>git add src

D:\Ds\app>git commit -am -"aa"
[master (root-commit) 5083dcd] -aa
 27 files changed, 541 insertions(+)
 create mode 100644 src/androidTest/java/com/exam/ds/ExampleInstrumentedTest.java
 create mode 100644 src/main/AndroidManifest.xml
 create mode 100644 src/main/java/com/exam/ds/Dao.java
 create mode 100644 src/main/java/com/exam/ds/MainActivity.java
 create mode 100644 src/main/java/com/exam/ds/MyFlowLayout.java
 create mode 100644 src/main/java/com/exam/ds/MySqlite.java
 create mode 100644 src/main/res/drawable-v24/ic_launcher_foreground.xml
 create mode 100644 src/main/res/drawable/ic_launcher_background.xml
 create mode 100644 src/main/res/drawable/textshape.xml
 create mode 100644 src/main/res/layout/activity_main.xml
 create mode 100644 src/main/res/layout/flow_item.xml
 create mode 100644 src/main/res/mipmap-anydpi-v26/ic_launcher.xml
 create mode 100644 src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
 create mode 100644 src/main/res/mipmap-hdpi/ic_launcher.png
 create mode 100644 src/main/res/mipmap-hdpi/ic_launcher_round.png
 create mode 100644 src/main/res/mipmap-mdpi/ic_launcher.png
 create mode 100644 src/main/res/mipmap-mdpi/ic_launcher_round.png
 create mode 100644 src/main/res/mipmap-xhdpi/ic_launcher.png
 create mode 100644 src/main/res/mipmap-xhdpi/ic_launcher_round.png
 create mode 100644 src/main/res/mipmap-xxhdpi/ic_launcher.png
 create mode 100644 src/main/res/mipmap-xxhdpi/ic_launcher_round.png
 create mode 100644 src/main/res/mipmap-xxxhdpi/ic_launcher.png
 create mode 100644 src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
 create mode 100644 src/main/res/values/colors.xml
 create mode 100644 src/main/res/values/strings.xml
 create mode 100644 src/main/res/values/styles.xml
 create mode 100644 src/test/java/com/exam/ds/ExampleUnitTest.java

D:\Ds\app>git branch aa

D:\Ds\app>git branch
  aa
* master

D:\Ds\app>git chectout aa
git: 'chectout' is not a git command. See 'git --help'.

The most similar command is
        checkout

D:\Ds\app>git branch
  aa
* master

D:\Ds\app>git checkout aa
Switched to branch 'aa'

D:\Ds\app>git branch
* aa
  master

D:\Ds\app>git status
On branch aa
Untracked files:
  (use "git add <file>..." to include in what will be committed)

        .gitignore
        app.iml
        build.gradle
        proguard-rules.pro

nothing added to commit but untracked files present (use "git add" to track)

D:\Ds\app>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章