Last active
April 19, 2024 13:58
-
-
Save dharavp/30cc6d8805b5e9c16ccdb34087f7e966 to your computer and use it in GitHub Desktop.
This Document is include to upload react-native project on github in ubantu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Upload React Native Project on Git | |
Step:1 Create Repository in Git Account | |
Step:2 Go Into the Folder of your project | |
Step:3 Initialize git | |
-> git init | |
Step:4 Add File into the Git | |
-> git add . | |
Step:5 Do Initial Commit | |
-> git commit -m 'initial commit' | |
Step:6 Add Origin Branch | |
-> git remote add origin https://github.com/dharavp/AuthFirebase-react-native.gi // your Repository's URL | |
Step:7 Push Code on your master Branch | |
-> git push -u origin master |
It worked. Thanks.
what happens with ios and android Files
it didn't work for me it's writing "fatal: LF would be replaced by CRLF in .bundle/config" whnever i add file
.... what can i do to it
core.autocrlf should be set to true(windows) or input(mac)
It worked. Thanks.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
its woks perfectly