ilh*_*han 0 php version-control windows-7
什么是最好的版本conrtol应用程序?我将它安装到我的Windows 7.我已经安装了WAMP.所以它可能是eider Windows 7应用程序或PHP应用程序.我的目的是仅管理/版本控制PHP文件.
对于Windows,通过Tortoise SVN很难击败SVN的简单性.话虽这么说,我更喜欢git的功能,速度,模型和灵活性.git 在windows上运行,非常值得学习.
了解git背后的辉煌将为您作为软件工程师带来巨大的回报.
15秒Git教程 编辑:这是17秒.
Git开始了:
cd c:\dev\project
git init
git add .
git commit -m "Initial Commit"
Run Code Online (Sandbox Code Playgroud)
编辑编辑编辑:
git add file1.txt
git add file2.txt
git commit -m "Fixed up thingy."
Run Code Online (Sandbox Code Playgroud)
看状态:
git status
Run Code Online (Sandbox Code Playgroud)
看历史:
git log
Run Code Online (Sandbox Code Playgroud)