How to upload a large file to a github

Baidu is really afraid of the pit, only for my own
if you previously installed git successful, two new options will appear right, respectively Git Gui Here, Git Bash Here, here we choose Git Bash Here, enter the following interface , Test_Bluetooth is the name of my project.

6. Now enter the following code (critical step), the above github cloned into a local repository

clone git https://github.com/CKTim/BlueTooth.git(https://github.com/CKTim/BlueTooth.git replaced before you copy the address )

7. After this step your local project folder below will be more of a folder, the folder name that is above your github project name, as I and more out of a Test folder, we have a local project folder all files (except the new file folder without extra), the rest are copied to the new extra folder,

8. Next inputting command cd Test, the Test folder into the

9. Next, enter the following code sequence to complete the other remaining operations:

git add (Note: Do not forget the back, this is the Test folder following files are added to come).

git commit "to submit information" -m (Note: "Submit information" into which you need, such as "first commit")

git push -u origin master (Note: This operation aims to push the local repository to github above, this step requires you to enter account number and password)

Guess you like

Origin www.cnblogs.com/anxia33/p/11913975.html