project-management

Best Version control for lone developer [closed]

百般思念 提交于 2019-11-27 06:02:10
I'm a lone developer at the moment; please share you experiences on what is a good VC setup for a lone developer. My constraints are; I work on multiple machines and need to keep them synced up Sometimes I work offline I'm currently using Subversion(just the client to a remote server), and that is working ok. I'm interested in Mercurial and git DVCS, but none of their use-cases make sense to my situation. EDIT: I've migrated my active development to Fossil http://www.fossil-scm.org/ after trialing it with a client. I really like the features to autosync my repositories(reducing accidental

What's a good way to organize projects with shared dependencies in Mercurial? [closed]

这一生的挚爱 提交于 2019-11-26 23:50:40
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 5 months ago . Currently, I'm moving from a legacy version control system and moving my group's project to mercurial. As one example of the kinds of code I'm moving, I have a 25+ project Visual Studio solution, containing several separate application areas that all depend on common code.

Writing user stories for internal technical tasks [closed]

点点圈 提交于 2019-11-26 19:15:35
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I am attempting to manage my projects a little better so I am looking at attempting to apply some of (eventually all) the features of scrum. Looking at user stories specifically the high level format seems to be: As a User I can Feature Description or Artifact is Doing Something How would I write "Upgrade the

How do you protect code from leaking outside? [duplicate]

本秂侑毒 提交于 2019-11-26 16:54:39
问题 This question already has an answer here: How do you protect your software from illegal distribution? [closed] 25 answers Besides open-sourcing your project and legislation, are there ways to prevent, or at least minimize the damages of code leaking outside your company/group? We obviously can't block Internet access (to prevent emailing the code) because programmer's need their references. We also can't block peripheral devices (USB, Firewire, etc.) The code matters most when it has some

Maven for other languages? [closed]

ぐ巨炮叔叔 提交于 2019-11-26 16:42:04
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 months ago . I am relatively new to the world of Java and Maven, but I couldn't imagine starting a new Java project without using Maven. The idea of providing a human-readable project model is something that I would imagine is universally desirable across many languages. This is especially true when your application relies

Code version change “rules” [closed]

余生颓废 提交于 2019-11-26 11:58:05
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 5 months ago . I know that there are no fixed rules about software version control but I have several questions. 1) How to upgrade versions correctly I have a small software that I started a while ago and since i started from scratch I started with version 0.1. As I added more

Duplicate and rename Xcode project & associated folders [closed]

此生再无相见时 提交于 2019-11-26 04:02:21
问题 I would like to be able to duplicate an entire Xcode project, rename the project and the associated files without Xcode going mental, and without having to manually re-import all files to the project. 回答1: This answer is the culmination of various other StackOverflow posts and tutorials around the internet brought into one place for my future reference, and to help anyone else who may be facing the same issue. All credit is given for other answers at the end. Duplicating an Xcode Project In

How do you maintain development code and production code? [closed]

无人久伴 提交于 2019-11-26 01:37:44
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 5 months ago . What are the best practices and rules-of-thumb to follow while maintaining code? Is it good practice to have only the production ready code in the development branch, or should untested latest code be available in the development branch? How do you guys maintain your