How to push code from Cloudways to Github





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







2















Is it possible to deploy code from a Cloudways app to an empty git repository? I would like to know if it's possible as I'm currently using FTP (Filezilla) for that. I'm able to clone a live site to a staging site, but cannot deploy it to Github in order to work on the files on my local machine.










share|improve this question































    2















    Is it possible to deploy code from a Cloudways app to an empty git repository? I would like to know if it's possible as I'm currently using FTP (Filezilla) for that. I'm able to clone a live site to a staging site, but cannot deploy it to Github in order to work on the files on my local machine.










    share|improve this question



























      2












      2








      2


      1






      Is it possible to deploy code from a Cloudways app to an empty git repository? I would like to know if it's possible as I'm currently using FTP (Filezilla) for that. I'm able to clone a live site to a staging site, but cannot deploy it to Github in order to work on the files on my local machine.










      share|improve this question
















      Is it possible to deploy code from a Cloudways app to an empty git repository? I would like to know if it's possible as I'm currently using FTP (Filezilla) for that. I'm able to clone a live site to a staging site, but cannot deploy it to Github in order to work on the files on my local machine.







      git github ssh ftp cloudways






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 18 at 18:36









      bart

      7,632175884




      7,632175884










      asked Nov 29 '18 at 3:58









      user3752231user3752231

      2017




      2017
























          2 Answers
          2






          active

          oldest

          votes


















          0














          You should first make sure you can deploy your Cloudways application (that you have copied through filezilla locally) with Git, and pushed to a GitHub repo:

          See "Deploy Code to Your Application Using Git".



          Once your SSH access is setup, you can click "start deployment" to initiate the process. It will fetch the GitHub repo, and deploy it.



          That means, to the question "Is it possible to deploy the code from a cloudways app to an empty git repository?": no, the publication process is the other way around.



          That would involve:




          • Generating and downloading SSH keys

          • Uploading the SSH public key to your Git Repository

          • Copying the Repository SSH address

          • Deploying code from your Repository


          The last step being:





          • Back on Cloudways console, paste the SSH address you got in Step 4 into the Git Remote Address field and click on the Authenticate. This will ensure that there are no blockers in the communication between Cloudways and Git service (which is Github in our example) .

          • Then choose the branch of your repository (master will be selected as default) you want to deploy from.

          • Next, type the deployment path (i.e. the folder in your server where the code will be deployed). Make sure to end it with a /.

            If you leave this field empty, the code will be deployed to public_html/.

          • Finally, click on the Start Deployment button to deploy your code to the selected path.




          https://support.cloudways.com/wp-content/uploads/2018/03/git-deploy-new1.png






          share|improve this answer





















          • 1





            This deploys FROM github TO cloudways, which I have no problem doing. What I'm asking is if it's possible to get the files FROM cloudways TO github, which I can then pull to my local repository.

            – user3752231
            Nov 29 '18 at 6:51











          • @user3752231 you can clone an app to a new server (support.cloudways.com/…): can you check if you can acess that new cloned repo on a new server? If yes, you should be able to clone it locally (before pushing it to GitHub) from that server ssh url.

            – VonC
            Nov 29 '18 at 7:12






          • 1





            I tried something like that, in that I cloned the live app to a staging app, not sure if I have the permissions to a new server, but If i did I still don't see any option for pushing it using Git. I'm just checking if possible with Git, their documentation doesn't mention it. If not then I can manage with ftp, then overwriting the staging files with the newly edited ones.

            – user3752231
            Nov 29 '18 at 8:20











          • @user3752231 not pushing, but cloning first to your local PC, then pushing from your local PC to GitHub.

            – VonC
            Nov 29 '18 at 8:21











          • I am able to deploy my code from a Git repo to cloudways with no problems by the way

            – user3752231
            Nov 29 '18 at 8:22



















          1














          First, create an empty repository on Github.com. Then log into your Cloudways dashboard, open your application and set up "Deployment via Git". When all that's done, open a command line application (eg. Terminal on Mac) and log in using your SSH credentials. Next up you'll be executing a handful of Git commands:



          First, you need to turn your server code into a local repository, by running the git init command in the public_html directory. This creates a .git subdirectory, which contains all of the necessary metadata for the new repository. Next you create a snapshot using git add ., and then you use git commit -m "My Cloudways Repo" to capture the state of the snapshot. My Cloudways Repo is a message for this initial commit and can be anything. After that, set a new remote using git remote add origin git@git.yourdomain.com:username/name_of_repo.git, this is the same address you've used to setup "Deployment via Git". Finally, you use git push origin master to push the code to the remote Github server.



          Summarized:



          Using command line, navigate to your application folder: /home/master/applications/yourdomain.com/public_html then execute the following commands (one by one so you can read the responses):



          git init
          git add .
          git commit -m "My Second Repo Cloudways"
          git remote add origin git@git.yourdomain.com:username/name_of_repo.git
          git push origin master


          You can learn more about git init, git add and git commit here:



          https://www.atlassian.com/git/tutorials/setting-up-a-repository






          share|improve this answer



















          • 1





            That seems more to the point than my answer. Upvoted.

            – VonC
            Mar 18 at 19:01












          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53531626%2fhow-to-push-code-from-cloudways-to-github%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          You should first make sure you can deploy your Cloudways application (that you have copied through filezilla locally) with Git, and pushed to a GitHub repo:

          See "Deploy Code to Your Application Using Git".



          Once your SSH access is setup, you can click "start deployment" to initiate the process. It will fetch the GitHub repo, and deploy it.



          That means, to the question "Is it possible to deploy the code from a cloudways app to an empty git repository?": no, the publication process is the other way around.



          That would involve:




          • Generating and downloading SSH keys

          • Uploading the SSH public key to your Git Repository

          • Copying the Repository SSH address

          • Deploying code from your Repository


          The last step being:





          • Back on Cloudways console, paste the SSH address you got in Step 4 into the Git Remote Address field and click on the Authenticate. This will ensure that there are no blockers in the communication between Cloudways and Git service (which is Github in our example) .

          • Then choose the branch of your repository (master will be selected as default) you want to deploy from.

          • Next, type the deployment path (i.e. the folder in your server where the code will be deployed). Make sure to end it with a /.

            If you leave this field empty, the code will be deployed to public_html/.

          • Finally, click on the Start Deployment button to deploy your code to the selected path.




          https://support.cloudways.com/wp-content/uploads/2018/03/git-deploy-new1.png






          share|improve this answer





















          • 1





            This deploys FROM github TO cloudways, which I have no problem doing. What I'm asking is if it's possible to get the files FROM cloudways TO github, which I can then pull to my local repository.

            – user3752231
            Nov 29 '18 at 6:51











          • @user3752231 you can clone an app to a new server (support.cloudways.com/…): can you check if you can acess that new cloned repo on a new server? If yes, you should be able to clone it locally (before pushing it to GitHub) from that server ssh url.

            – VonC
            Nov 29 '18 at 7:12






          • 1





            I tried something like that, in that I cloned the live app to a staging app, not sure if I have the permissions to a new server, but If i did I still don't see any option for pushing it using Git. I'm just checking if possible with Git, their documentation doesn't mention it. If not then I can manage with ftp, then overwriting the staging files with the newly edited ones.

            – user3752231
            Nov 29 '18 at 8:20











          • @user3752231 not pushing, but cloning first to your local PC, then pushing from your local PC to GitHub.

            – VonC
            Nov 29 '18 at 8:21











          • I am able to deploy my code from a Git repo to cloudways with no problems by the way

            – user3752231
            Nov 29 '18 at 8:22
















          0














          You should first make sure you can deploy your Cloudways application (that you have copied through filezilla locally) with Git, and pushed to a GitHub repo:

          See "Deploy Code to Your Application Using Git".



          Once your SSH access is setup, you can click "start deployment" to initiate the process. It will fetch the GitHub repo, and deploy it.



          That means, to the question "Is it possible to deploy the code from a cloudways app to an empty git repository?": no, the publication process is the other way around.



          That would involve:




          • Generating and downloading SSH keys

          • Uploading the SSH public key to your Git Repository

          • Copying the Repository SSH address

          • Deploying code from your Repository


          The last step being:





          • Back on Cloudways console, paste the SSH address you got in Step 4 into the Git Remote Address field and click on the Authenticate. This will ensure that there are no blockers in the communication between Cloudways and Git service (which is Github in our example) .

          • Then choose the branch of your repository (master will be selected as default) you want to deploy from.

          • Next, type the deployment path (i.e. the folder in your server where the code will be deployed). Make sure to end it with a /.

            If you leave this field empty, the code will be deployed to public_html/.

          • Finally, click on the Start Deployment button to deploy your code to the selected path.




          https://support.cloudways.com/wp-content/uploads/2018/03/git-deploy-new1.png






          share|improve this answer





















          • 1





            This deploys FROM github TO cloudways, which I have no problem doing. What I'm asking is if it's possible to get the files FROM cloudways TO github, which I can then pull to my local repository.

            – user3752231
            Nov 29 '18 at 6:51











          • @user3752231 you can clone an app to a new server (support.cloudways.com/…): can you check if you can acess that new cloned repo on a new server? If yes, you should be able to clone it locally (before pushing it to GitHub) from that server ssh url.

            – VonC
            Nov 29 '18 at 7:12






          • 1





            I tried something like that, in that I cloned the live app to a staging app, not sure if I have the permissions to a new server, but If i did I still don't see any option for pushing it using Git. I'm just checking if possible with Git, their documentation doesn't mention it. If not then I can manage with ftp, then overwriting the staging files with the newly edited ones.

            – user3752231
            Nov 29 '18 at 8:20











          • @user3752231 not pushing, but cloning first to your local PC, then pushing from your local PC to GitHub.

            – VonC
            Nov 29 '18 at 8:21











          • I am able to deploy my code from a Git repo to cloudways with no problems by the way

            – user3752231
            Nov 29 '18 at 8:22














          0












          0








          0







          You should first make sure you can deploy your Cloudways application (that you have copied through filezilla locally) with Git, and pushed to a GitHub repo:

          See "Deploy Code to Your Application Using Git".



          Once your SSH access is setup, you can click "start deployment" to initiate the process. It will fetch the GitHub repo, and deploy it.



          That means, to the question "Is it possible to deploy the code from a cloudways app to an empty git repository?": no, the publication process is the other way around.



          That would involve:




          • Generating and downloading SSH keys

          • Uploading the SSH public key to your Git Repository

          • Copying the Repository SSH address

          • Deploying code from your Repository


          The last step being:





          • Back on Cloudways console, paste the SSH address you got in Step 4 into the Git Remote Address field and click on the Authenticate. This will ensure that there are no blockers in the communication between Cloudways and Git service (which is Github in our example) .

          • Then choose the branch of your repository (master will be selected as default) you want to deploy from.

          • Next, type the deployment path (i.e. the folder in your server where the code will be deployed). Make sure to end it with a /.

            If you leave this field empty, the code will be deployed to public_html/.

          • Finally, click on the Start Deployment button to deploy your code to the selected path.




          https://support.cloudways.com/wp-content/uploads/2018/03/git-deploy-new1.png






          share|improve this answer















          You should first make sure you can deploy your Cloudways application (that you have copied through filezilla locally) with Git, and pushed to a GitHub repo:

          See "Deploy Code to Your Application Using Git".



          Once your SSH access is setup, you can click "start deployment" to initiate the process. It will fetch the GitHub repo, and deploy it.



          That means, to the question "Is it possible to deploy the code from a cloudways app to an empty git repository?": no, the publication process is the other way around.



          That would involve:




          • Generating and downloading SSH keys

          • Uploading the SSH public key to your Git Repository

          • Copying the Repository SSH address

          • Deploying code from your Repository


          The last step being:





          • Back on Cloudways console, paste the SSH address you got in Step 4 into the Git Remote Address field and click on the Authenticate. This will ensure that there are no blockers in the communication between Cloudways and Git service (which is Github in our example) .

          • Then choose the branch of your repository (master will be selected as default) you want to deploy from.

          • Next, type the deployment path (i.e. the folder in your server where the code will be deployed). Make sure to end it with a /.

            If you leave this field empty, the code will be deployed to public_html/.

          • Finally, click on the Start Deployment button to deploy your code to the selected path.




          https://support.cloudways.com/wp-content/uploads/2018/03/git-deploy-new1.png







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 18 at 7:20

























          answered Nov 29 '18 at 5:37









          VonCVonC

          853k30127173281




          853k30127173281








          • 1





            This deploys FROM github TO cloudways, which I have no problem doing. What I'm asking is if it's possible to get the files FROM cloudways TO github, which I can then pull to my local repository.

            – user3752231
            Nov 29 '18 at 6:51











          • @user3752231 you can clone an app to a new server (support.cloudways.com/…): can you check if you can acess that new cloned repo on a new server? If yes, you should be able to clone it locally (before pushing it to GitHub) from that server ssh url.

            – VonC
            Nov 29 '18 at 7:12






          • 1





            I tried something like that, in that I cloned the live app to a staging app, not sure if I have the permissions to a new server, but If i did I still don't see any option for pushing it using Git. I'm just checking if possible with Git, their documentation doesn't mention it. If not then I can manage with ftp, then overwriting the staging files with the newly edited ones.

            – user3752231
            Nov 29 '18 at 8:20











          • @user3752231 not pushing, but cloning first to your local PC, then pushing from your local PC to GitHub.

            – VonC
            Nov 29 '18 at 8:21











          • I am able to deploy my code from a Git repo to cloudways with no problems by the way

            – user3752231
            Nov 29 '18 at 8:22














          • 1





            This deploys FROM github TO cloudways, which I have no problem doing. What I'm asking is if it's possible to get the files FROM cloudways TO github, which I can then pull to my local repository.

            – user3752231
            Nov 29 '18 at 6:51











          • @user3752231 you can clone an app to a new server (support.cloudways.com/…): can you check if you can acess that new cloned repo on a new server? If yes, you should be able to clone it locally (before pushing it to GitHub) from that server ssh url.

            – VonC
            Nov 29 '18 at 7:12






          • 1





            I tried something like that, in that I cloned the live app to a staging app, not sure if I have the permissions to a new server, but If i did I still don't see any option for pushing it using Git. I'm just checking if possible with Git, their documentation doesn't mention it. If not then I can manage with ftp, then overwriting the staging files with the newly edited ones.

            – user3752231
            Nov 29 '18 at 8:20











          • @user3752231 not pushing, but cloning first to your local PC, then pushing from your local PC to GitHub.

            – VonC
            Nov 29 '18 at 8:21











          • I am able to deploy my code from a Git repo to cloudways with no problems by the way

            – user3752231
            Nov 29 '18 at 8:22








          1




          1





          This deploys FROM github TO cloudways, which I have no problem doing. What I'm asking is if it's possible to get the files FROM cloudways TO github, which I can then pull to my local repository.

          – user3752231
          Nov 29 '18 at 6:51





          This deploys FROM github TO cloudways, which I have no problem doing. What I'm asking is if it's possible to get the files FROM cloudways TO github, which I can then pull to my local repository.

          – user3752231
          Nov 29 '18 at 6:51













          @user3752231 you can clone an app to a new server (support.cloudways.com/…): can you check if you can acess that new cloned repo on a new server? If yes, you should be able to clone it locally (before pushing it to GitHub) from that server ssh url.

          – VonC
          Nov 29 '18 at 7:12





          @user3752231 you can clone an app to a new server (support.cloudways.com/…): can you check if you can acess that new cloned repo on a new server? If yes, you should be able to clone it locally (before pushing it to GitHub) from that server ssh url.

          – VonC
          Nov 29 '18 at 7:12




          1




          1





          I tried something like that, in that I cloned the live app to a staging app, not sure if I have the permissions to a new server, but If i did I still don't see any option for pushing it using Git. I'm just checking if possible with Git, their documentation doesn't mention it. If not then I can manage with ftp, then overwriting the staging files with the newly edited ones.

          – user3752231
          Nov 29 '18 at 8:20





          I tried something like that, in that I cloned the live app to a staging app, not sure if I have the permissions to a new server, but If i did I still don't see any option for pushing it using Git. I'm just checking if possible with Git, their documentation doesn't mention it. If not then I can manage with ftp, then overwriting the staging files with the newly edited ones.

          – user3752231
          Nov 29 '18 at 8:20













          @user3752231 not pushing, but cloning first to your local PC, then pushing from your local PC to GitHub.

          – VonC
          Nov 29 '18 at 8:21





          @user3752231 not pushing, but cloning first to your local PC, then pushing from your local PC to GitHub.

          – VonC
          Nov 29 '18 at 8:21













          I am able to deploy my code from a Git repo to cloudways with no problems by the way

          – user3752231
          Nov 29 '18 at 8:22





          I am able to deploy my code from a Git repo to cloudways with no problems by the way

          – user3752231
          Nov 29 '18 at 8:22













          1














          First, create an empty repository on Github.com. Then log into your Cloudways dashboard, open your application and set up "Deployment via Git". When all that's done, open a command line application (eg. Terminal on Mac) and log in using your SSH credentials. Next up you'll be executing a handful of Git commands:



          First, you need to turn your server code into a local repository, by running the git init command in the public_html directory. This creates a .git subdirectory, which contains all of the necessary metadata for the new repository. Next you create a snapshot using git add ., and then you use git commit -m "My Cloudways Repo" to capture the state of the snapshot. My Cloudways Repo is a message for this initial commit and can be anything. After that, set a new remote using git remote add origin git@git.yourdomain.com:username/name_of_repo.git, this is the same address you've used to setup "Deployment via Git". Finally, you use git push origin master to push the code to the remote Github server.



          Summarized:



          Using command line, navigate to your application folder: /home/master/applications/yourdomain.com/public_html then execute the following commands (one by one so you can read the responses):



          git init
          git add .
          git commit -m "My Second Repo Cloudways"
          git remote add origin git@git.yourdomain.com:username/name_of_repo.git
          git push origin master


          You can learn more about git init, git add and git commit here:



          https://www.atlassian.com/git/tutorials/setting-up-a-repository






          share|improve this answer



















          • 1





            That seems more to the point than my answer. Upvoted.

            – VonC
            Mar 18 at 19:01
















          1














          First, create an empty repository on Github.com. Then log into your Cloudways dashboard, open your application and set up "Deployment via Git". When all that's done, open a command line application (eg. Terminal on Mac) and log in using your SSH credentials. Next up you'll be executing a handful of Git commands:



          First, you need to turn your server code into a local repository, by running the git init command in the public_html directory. This creates a .git subdirectory, which contains all of the necessary metadata for the new repository. Next you create a snapshot using git add ., and then you use git commit -m "My Cloudways Repo" to capture the state of the snapshot. My Cloudways Repo is a message for this initial commit and can be anything. After that, set a new remote using git remote add origin git@git.yourdomain.com:username/name_of_repo.git, this is the same address you've used to setup "Deployment via Git". Finally, you use git push origin master to push the code to the remote Github server.



          Summarized:



          Using command line, navigate to your application folder: /home/master/applications/yourdomain.com/public_html then execute the following commands (one by one so you can read the responses):



          git init
          git add .
          git commit -m "My Second Repo Cloudways"
          git remote add origin git@git.yourdomain.com:username/name_of_repo.git
          git push origin master


          You can learn more about git init, git add and git commit here:



          https://www.atlassian.com/git/tutorials/setting-up-a-repository






          share|improve this answer



















          • 1





            That seems more to the point than my answer. Upvoted.

            – VonC
            Mar 18 at 19:01














          1












          1








          1







          First, create an empty repository on Github.com. Then log into your Cloudways dashboard, open your application and set up "Deployment via Git". When all that's done, open a command line application (eg. Terminal on Mac) and log in using your SSH credentials. Next up you'll be executing a handful of Git commands:



          First, you need to turn your server code into a local repository, by running the git init command in the public_html directory. This creates a .git subdirectory, which contains all of the necessary metadata for the new repository. Next you create a snapshot using git add ., and then you use git commit -m "My Cloudways Repo" to capture the state of the snapshot. My Cloudways Repo is a message for this initial commit and can be anything. After that, set a new remote using git remote add origin git@git.yourdomain.com:username/name_of_repo.git, this is the same address you've used to setup "Deployment via Git". Finally, you use git push origin master to push the code to the remote Github server.



          Summarized:



          Using command line, navigate to your application folder: /home/master/applications/yourdomain.com/public_html then execute the following commands (one by one so you can read the responses):



          git init
          git add .
          git commit -m "My Second Repo Cloudways"
          git remote add origin git@git.yourdomain.com:username/name_of_repo.git
          git push origin master


          You can learn more about git init, git add and git commit here:



          https://www.atlassian.com/git/tutorials/setting-up-a-repository






          share|improve this answer













          First, create an empty repository on Github.com. Then log into your Cloudways dashboard, open your application and set up "Deployment via Git". When all that's done, open a command line application (eg. Terminal on Mac) and log in using your SSH credentials. Next up you'll be executing a handful of Git commands:



          First, you need to turn your server code into a local repository, by running the git init command in the public_html directory. This creates a .git subdirectory, which contains all of the necessary metadata for the new repository. Next you create a snapshot using git add ., and then you use git commit -m "My Cloudways Repo" to capture the state of the snapshot. My Cloudways Repo is a message for this initial commit and can be anything. After that, set a new remote using git remote add origin git@git.yourdomain.com:username/name_of_repo.git, this is the same address you've used to setup "Deployment via Git". Finally, you use git push origin master to push the code to the remote Github server.



          Summarized:



          Using command line, navigate to your application folder: /home/master/applications/yourdomain.com/public_html then execute the following commands (one by one so you can read the responses):



          git init
          git add .
          git commit -m "My Second Repo Cloudways"
          git remote add origin git@git.yourdomain.com:username/name_of_repo.git
          git push origin master


          You can learn more about git init, git add and git commit here:



          https://www.atlassian.com/git/tutorials/setting-up-a-repository







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 18 at 18:34









          bartbart

          7,632175884




          7,632175884








          • 1





            That seems more to the point than my answer. Upvoted.

            – VonC
            Mar 18 at 19:01














          • 1





            That seems more to the point than my answer. Upvoted.

            – VonC
            Mar 18 at 19:01








          1




          1





          That seems more to the point than my answer. Upvoted.

          – VonC
          Mar 18 at 19:01





          That seems more to the point than my answer. Upvoted.

          – VonC
          Mar 18 at 19:01


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53531626%2fhow-to-push-code-from-cloudways-to-github%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Contact image not getting when fetch all contact list from iPhone by CNContact

          count number of partitions of a set with n elements into k subsets

          A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks