Я не могу объединить свой коммит с моей основной веткой в github.
Это шаг за шагом из того, что я сделал / попробовал
git push origin master
Everything up-to-date
Anils-MacBook-Pro:React-native-crypto anilbhatia$ git add .
Anils-MacBook-Pro:React-native-crypto anilbhatia$ git commit -m "Final Production working build"
[detached HEAD 46a7f55] Final Production working build
28 files changed, 87 insertions(+), 29 deletions(-)
g rewrite android/app/src/main/res/mipmap-hdpi/ic_launcher.png (97%)
rewrite android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png (98%)
rewrite android/app/src/main/res/mipmap-hdpi/icon.png (99%)
rewrite android/app/src/main/res/mipmap-mdpi/ic_launcher.png (99%)
rewrite android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png (99%)
rewrite android/app/src/main/res/mipmap-mdpi/icon.png (98%)
rewrite android/app/src/main/res/mipmap-xhdpi/ic_launcher.png (99%)
rewrite android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png (98%)
rewrite android/app/src/main/res/mipmap-xhdpi/icon.png (98%)
rewrite android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png (98%)
rewrite android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png (98%)
rewrite android/app/src/main/res/mipmap-xxhdpi/icon.png (98%)
rewrite android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png (97%)
rewrite android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png (99%)
rewrite android/app/src/main/res/mipmap-xxxhdpi/icon.png (98%)
delete mode 100644 src/images/123.png
delete mode 100644 src/images/angel.jpg
delete mode 100644 src/images/facebook.png
delete mode 100644 src/images/instagram.png
delete mode 100644 src/images/twitter.jpg
Anils-MacBook-Pro:React-native-crypto anilbhatia$ git push
fatal: You are not currently on a branch.
To push the history leading to the current (detached HEAD)
state now, use
git push origin HEAD:<name-of-remote-branch>
Anils-MacBook-Pro:React-native-crypto anilbhatia$
Anils-MacBook-Pro:React-native-crypto anilbhatia$ git checkout master
Warning: you are leaving 2 commits behind, not connected to
any of your branches:
46a7f55 Final Production working build
3af30c2 Victory Native graphs work
If you want to keep them by creating a new branch, this may be a good time
to do so with:
git branch <new-branch-name> 46a7f55
Switched to branch 'master'
Your branch is up to date with 'origin/master'.
Anils-MacBook-Pro:React-native-crypto anilbhatia$ git push
Everything up-to-date
Anils-MacBook-Pro:React-native-crypto anilbhatia$ git checkout splashscreen
Branch 'splashscreen' set up to track remote branch 'splashscreen' from 'origin'.
Switched to a new branch 'splashscreen'
Anils-MacBook-Pro:React-native-crypto anilbhatia$ git push
Everything up-to-date
Anils-MacBook-Pro:React-native-crypto anilbhatia$ git status .
On branch splashscreen
Your branch is up to date with 'origin/splashscreen'.
nothing to commit, working tree clean
Anils-MacBook-Pro:React-native-crypto anilbhatia$ git add .
Anils-MacBook-Pro:React-native-crypto anilbhatia$ git commit -m "production build"
On branch splashscreen
Your branch is up to date with 'origin/splashscreen'.
nothing to commit, working tree clean
Anils-MacBook-Pro:React-native-crypto anilbhatia$
Теперь я не могу увидеть свою последнюю работу, которую я считаю, потому что я сделал "git checkout master"и "git checkout splashscreen".
Я могу это исправить, вернувшись к этому коммиту 46a7f55 Final Production working build
, но тогда как мне перейти на мой github?