scripts/feeds: ensure that --ff is enabled
Users may have merge.ff set to false, which will force merge commits to be generated. The intent here is to have a fast-forward merge when possible, so let's make sure fast-forwards are enabled. Signed-off-by: John Szakmeister <john@szakmeister.net> Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 37884
This commit is contained in:
		@@ -119,7 +119,7 @@ my %update_method = (
 | 
				
			|||||||
	'src-git' => {
 | 
						'src-git' => {
 | 
				
			||||||
		'init'          => "git clone --depth 1 '%s' '%s'",
 | 
							'init'          => "git clone --depth 1 '%s' '%s'",
 | 
				
			||||||
		'init_branch'   => "git clone --depth 1 --branch '%s' '%s' '%s'",
 | 
							'init_branch'   => "git clone --depth 1 --branch '%s' '%s' '%s'",
 | 
				
			||||||
		'update'	=> "git pull",
 | 
							'update'	=> "git pull --ff",
 | 
				
			||||||
		'controldir'	=> ".git",
 | 
							'controldir'	=> ".git",
 | 
				
			||||||
		'revision'	=> "git show --abbrev-commit HEAD | head -n 1 | cut -d ' ' -f 2 | tr -d '\n'"},
 | 
							'revision'	=> "git show --abbrev-commit HEAD | head -n 1 | cut -d ' ' -f 2 | tr -d '\n'"},
 | 
				
			||||||
	'src-gitsvn' => {
 | 
						'src-gitsvn' => {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user