1.进入GitHub版本库
首先打开 Linux命令行环境,输入如下代码进入GitHub版本库
git clone https://github.com/username/Repository
cd Repository
https://github.com/username/Repository
为你的版本库链接
示例:
2.用vim编辑器编写C语言程序
vi hello.c
vim编辑器编写程序:
编译运行:
gcc -o hello hello.c
./hello
运行结果如图:
3.保存到GitHub
git add hello.c
git commit -m "Hello World"
4.课程实验源代码
shiyanlou:~/ $ cd Code
shiyanlou:Code/ $ git clone https://github.com/moyin1004/software-c
shiyanlou:Code/ $ cd software-c/lab1
shiyanlou:lab1/ (master) $ gcc -o hello hello.c
shiyanlou:lab1/ (master*) $ ./hello
shiyanlou:lab1/ (master*) $ vi hello.c
【网易云课堂陌音1314 + 《软件工程(C编码实践篇)》MOOC课程作业http://mooc.study.163.com/course/USTC-1000002006 】