# uipath-samples **Repository Path**: lfilfi/uipath-samples ## Basic Information - **Project Name**: uipath-samples - **Description**: UiPath Samples - **Primary Language**: Unknown - **License**: Unlicense - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2022-03-06 - **Last Updated**: 2022-03-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 简易的命令行入门教程: ## Git 全局设置: ``` git config --global user.name "WaylanPunch" git config --global user.email "waylanpunch@gmail.com" ``` ## 创建 git 仓库: ``` mkdir uipath-samples cd uipath-samples git init touch README.md git add README.md git commit -m "first commit" git remote add origin https://gitee.com/waylanpunch/uipath-samples.git git push -u origin "master" ``` ## 已有仓库? ``` cd existing_git_repo git remote add origin https://gitee.com/waylanpunch/uipath-samples.git git push -u origin "master" ```