How to use terminal commands with Github?

后端 未结 3 1578
难免孤独
难免孤独 2021-01-29 19:28

I have forked a private repository (an iPhone project) as follows:

cd nameofdirectory
git init
git clone forkedURL

Now I want to push the chang

3条回答
  •  耶瑟儿~
    2021-01-29 19:49

    git add myfile.h
    git commit -m "your commit message"
    git push -u origin master
    

    if you don't remember all the files you need to update, use

    git status
    

提交回复
热议问题