# gitpull **Repository Path**: iwsx/gitpull ## Basic Information - **Project Name**: gitpull - **Description**: No description available - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-11-28 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # gitpull 1.新建项目文件夹,通过命令git init将项目初始化成git本地仓库 ``` git init ``` 2.建立远程仓库和本地仓库的映射链接 ``` git remote add origin xxx //xxx是远程git仓库的地址 ``` 3.拉取远程仓库数据 ``` git pull origin master ```