Re: [PATCH v3 10/10] submodule add: respect submodule.active and submodule.<name>.active

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Brandon Williams <bmwill@xxxxxxxxxx> writes:

> +	if git config --get submodule.active >/dev/null
> +	then
> +		# If the submodule being adding isn't already covered by the
> +		# current configured pathspec, set the submodule's active flag
> +		if ! git submodule--helper is-active "$sm_path"
> +		then
> +			git config --add submodule."$sm_name".active "true"
> +		fi
> +	else
> +		git config --add submodule."$sm_name".active "true"
> +	fi

Why "--add"?  That's a way to add new entry for multi-valued
configuration, but you do not care if the old value (if existed)
were false or true---you want to replace it to true here, no?




[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]