git提交没有出现在github中

Red*_*ket 3 git github

我是git newbee,我有一个非常简单的github回购,我想改变它,所以我这样做...

1)启动"Git Bash"(我在Windows系统上)2)执行...

$ git clone https://github.com/redcricket/simple_flashlight.git
Run Code Online (Sandbox Code Playgroud)

3)将我的变化从eclipse导出到simple_flashlight/flashlight/4)cd到...

$ cd simple_flashlight/flashlight/
Run Code Online (Sandbox Code Playgroud)

5)做一个差异......

$ git diff AndroidManifest.xml
diff --git a/flashlight/AndroidManifest.xml b/flashlight/AndroidManifest.xml
index a57b2c1..59d5fc5 100644
--- a/flashlight/AndroidManifest.xml
+++ b/flashlight/AndroidManifest.xml
@@ -4,6 +4,7 @@
       android:versionCode="1"
       android:versionName="1.0">
     <uses-sdk android:minSdkVersion="8" />
+
<!-- Allows access to the flashlight -->
<uses-permission android:name="android.permission.CAMERA"></uses-permission>
<uses-permission android:name="android.permission.WAKE_LOCK"></uses-permission>
@@ -16,7 +17,12 @@


     <application android:icon="@drawable/icon" android:label="@string/app_name"
+    <!--
+      - to prevent "flashing" when orientation changes I added the line
+      - android:configChanges="orientation"
+      -->
         <activity android:name=".FlashlightActivity"
+                         android:configChanges="orientation"
                   android:label="@string/app_name">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
warning: LF will be replaced by CRLF in flashlight/AndroidManifest.xml.
The file will have its original line endings in your working directory.
Run Code Online (Sandbox Code Playgroud)

6)我做"升级"......我想...通过这样做......

$ git add AndroidManifest.xml
warning: LF will be replaced by CRLF in flashlight/AndroidManifest.xml.
The file will have its original line endings in your working directory.
$ git status
warning: LF will be replaced by CRLF in flashlight/AndroidManifest.xml.
The file will have its original line endings in your working directory.
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#       modified:   AndroidManifest.xml
#
Run Code Online (Sandbox Code Playgroud)

7)像我这样做我的承诺......

$ git commit -m "do not flash light on orientation change"
[master warning: LF will be replaced by CRLF in flashlight/AndroidManifest.xml.
The file will have its original line endings in your working directory.
361f69b] do not flash light on orientation change
warning: LF will be replaced by CRLF in flashlight/AndroidManifest.xml.
The file will have its original line endings in your working directory.
1 file changed, 6 insertions(+)
Run Code Online (Sandbox Code Playgroud)

然后我在https://github.com/redcricket/simple_flashlight/commits/master看看我的回购 ,我看不到我的变化.我这是我的git配置...

$ git config --global -l
user.name=redcricket
user.email=red.cricket.blog@gmail.com
Run Code Online (Sandbox Code Playgroud)

... 我究竟做错了什么?

谢谢!

SLa*_*aks 5

您已将更改提交到存储库的本地克隆.

如果你想在GitHub上看到那个提交,你git push首先需要它.