摘要:
在执行git pull的时候,提示当前branch没有跟踪信息:
$> git pull
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
阅读全文
摘要:
1、打开文件并定位到某一行
vim +20 vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php # 定位至第20行
2、打开文件,定位至最后一行
vim + vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php # 定位至尾行
阅读全文