1. Update URLs according to document migration 2. Update the dead and outdated links 3. Optimize (e.g. http -> https) Change-Id: I426747fbeb2277a5cddacf589234c0fdcfc5d673
		
			
				
	
	
		
			34 lines
		
	
	
		
			831 B
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			831 B
		
	
	
	
		
			ReStructuredText
		
	
	
	
	
	
Contributing
 | 
						|
============
 | 
						|
 | 
						|
Code is hosted `on GitHub`_. Submit bugs to the Designate Client project on
 | 
						|
`Launchpad`_. Submit code to the openstack/python-designateclient project using
 | 
						|
`Gerrit`_.
 | 
						|
 | 
						|
.. _on GitHub: https://github.com/openstack/python-designateclient
 | 
						|
.. _Launchpad: https://launchpad.net/python-designateclient
 | 
						|
.. _Gerrit: https://docs.openstack.org/infra/manual/developers.html#development-workflow
 | 
						|
 | 
						|
Here's a quick summary:
 | 
						|
 | 
						|
Install the git-review package to make life easier
 | 
						|
 | 
						|
.. code-block:: shell-session
 | 
						|
 | 
						|
  pip install git-review
 | 
						|
 | 
						|
Branch, work, & submit:
 | 
						|
 | 
						|
.. code-block:: shell-session
 | 
						|
 | 
						|
  # cut a new branch, tracking master
 | 
						|
  git checkout --track -b bug/id origin/master
 | 
						|
  # work work work
 | 
						|
  git add stuff
 | 
						|
  git commit
 | 
						|
  # rebase/squash to a single commit before submitting
 | 
						|
  git rebase -i
 | 
						|
  # submit
 | 
						|
  git-review
 | 
						|
 |