摘要: 一、编译,生成执行文件,预处理 -> 编译(译为汇编代码) -> 汇编 -> 链接 -> 可执行文件 gcc,g++ gcc -g hello.c -o hello g++ -g hello.cpp -o hello gcc main.c -o gdb-sample -g // 生成调试文件使用 / 阅读全文
posted @ 2017-02-27 16:53 零下¥六度 阅读(432) 评论(0) 推荐(0) 编辑
摘要: 一、环境配置 1.设置user name,email git config --global user.name "xxxxxx" git config --global user.mail "xxx@xxx.com" 2.生成ssh key 查看当前用户是否有.ssh文件夹,若有备份or删除后执行 阅读全文
posted @ 2017-02-27 15:37 零下¥六度 阅读(203) 评论(0) 推荐(0) 编辑