- Daniel Arbuckle's Mastering Python
- Daniel Arbuckle
- 106字
- 2021-07-02 21:09:41
Initializing Git
The first thing we need to do to use Git, after installing it of course, is to set up a folder as our Git repository. This only takes a couple of commands on the command line, as shown here:

After that, we move to the folders where we want the repository to be, that is, git init and git add. Once we've initialized the repository, we add any files that we've already created to it with the git add command. Then, we create our first safe point in the code with the git commit -a command, as shown here:
git commit -a
推薦閱讀
- 從零開始構建企業級RAG系統
- 數據庫系統原理及MySQL應用教程(第2版)
- Visual Basic編程:從基礎到實踐(第2版)
- Java 9 Programming Blueprints
- C#程序設計(慕課版)
- Mastering Swift 2
- 差分進化算法及其高維多目標優化應用
- Python機器學習經典實例
- Ext JS 4 Web Application Development Cookbook
- Getting Started with Laravel 4
- Java EE核心技術與應用
- Java系統化項目開發教程
- Unity 3D/2D移動開發實戰教程
- Scratch趣味編程:陪孩子像搭積木一樣學編程
- 零基礎學C語言程序設計