Questions tagged [assembla]

Assembla is a company that provides cloud-based tools to organize and manage open-source and commercial software development.

Assembla is a company that provides cloud-based tools to organize and manage open-source and commercial software development. Assembla is currently used by over 500,000 users across 100 countries.

History

Assembla has been based in Needham, Massachusetts since 2003. The company officially formed in 2005, headed by Andy Singleton, creator of PowerSteering Software, using a distributed agile process to link employees from multiple locations.
In Oct 2008, Assembla began charging for some of its services.
In March 2009, Assembla partnered with online workteam tool provider oDesk, providing users joint access to the companies' services.
In May of 2011, Assembla released its Portfolio product which is built around centralized user management and reporting through a private banded portal that supports an unlimited number of projects. Assembla Portfolio is packaged for larger Enterprises.

138 questions
0
votes
1 answer

error when attempting to push/pull from git repository hosted by assembla

I'm getting the following error when attempting to push/pull from my git repository which is being hosted by assembla: E, [2011-07-09T19:00:05.492878 #8781] ERROR -- : git command not recognized fatal: The remote end hung up unexpectedly I'm…
Casey Flynn
  • 13,654
  • 23
  • 103
  • 194
0
votes
1 answer

How to download a file from assembla with a key and a secret using a python script

import requests url = 'https://api.assembla.com/v1/spaces' API_KEY = "API_KEY" API_SECRET = "API_SECRET " resp = requests.get(url, auth=(API_KEY, API_SECRET)) print(resp.status_code) I keep getting 401. I'm not sure how to use an API_KEY and an…
RiptimRip
  • 11
  • 1
  • 3
0
votes
1 answer

Need Node js code snippet to get data from Assembla

Trying to get data from Assembla using node js rest API call. I am not sure how to authenticate using the Bearer token and get the JSON output. is there any way we can use HTTP request and get the output as expected. Please help.
0
votes
2 answers

How do I automate subversion, tortoisesvn and Assembla.com?

I am new to subversion, or I have used it a tiny bit, but don't understand how to check in/out files, like I used to do with VSS or QCVS. But since this new project is for a private mmorpg server, I want to automate check in/out update of the…
crosenblum
  • 1,869
  • 5
  • 34
  • 57
0
votes
1 answer

How to configure Assembla service in GitLab?

I'm trying to integrate Assembla issue tracker with GitLab CE. Assembla project template has only 2 configuration option: Subdomain and Token. Subdomain seems clear. Where can I find the Token value?
I V
  • 195
  • 8
0
votes
1 answer

Use CURL Command to download remote files in Shell scripting

I need to download remote files using curl command below curl -O -J "URL" This is working as expected when I use this command separately when I try to use the same command in a shell script(below). it gives error below. #!/bin/bash $curl -O -J…
0
votes
1 answer

Backup hosted repository to off-site location

I am still pretty new to VCSs in general. I have a SVN repository hosted at assembla. I know how to check out and commit to the repository. But if I wanted to actually get a backup of the repository itself to save offsite. How can I do that?
JD Isaacks
  • 56,088
  • 93
  • 276
  • 422
0
votes
0 answers

Automated deployment using Assembla's SSH deployment tool

I have been using assembla's SSH deployment tool to setup the automated deployment. What i have done so far is: Setup a git repo with two branch master and develop. Setup a SSH script using the following code to deploy on server. nohup sh -c 'cd…
Anurag
  • 555
  • 3
  • 10
0
votes
0 answers

Create dependency from assembla repo

Is it possible to create a library dependency from an assembla svn repo and use it like this: compile 'com.google.code.gson:gson:2.5'
0
votes
1 answer

Perforce P4HOST won't work from Config file, only globally

I have a connection to Assembla that requires P4HOST to be set. I have a bunch of other P4 connections to different servers that don't need that set. I've setup a few different p4config.txt files and set P4CONFIG to use that file name. Everything on…
john
  • 408
  • 9
  • 30
0
votes
1 answer

QA Build Automation Mechanism for .NET Project on SVN

We are working on .NET Windows Application. We were using TFS from the beginning. Now, after Assembla - an agile wiki project management and collabration tool that provides a repository for source control which is on SVN we are moving from TFS to…
Ramiz Uddin
  • 4,249
  • 4
  • 40
  • 72
0
votes
1 answer

Create svn structure in svn repository

I get repository where main folder is folder of solution. I want create folders trunk, branches, tags, etc. This repository is on Assembla. I'm using windows 7 and newest SVN Tortoise. Is it some simple way to reconstruct this repository ?
user278618
  • 19,306
  • 42
  • 126
  • 196
0
votes
1 answer

Fatal Authentication Error when i try 'Pod Install' command

I am trying to implement my framework library into my project using Cocoa Pods. I found similar questions but their error messages were different from mine. Hence i am posting this question. I successfully created pod file using pod init command…
Ganesh
  • 1,820
  • 2
  • 20
  • 40
0
votes
1 answer

Unable to git push new branch, got an undefined method `hex' for nil:NilClass (NoMethodError) error

I am trying to git push a new branch I have been working on. This is not the first time I'm pushing to the repo (hosted on assembla) and had no issues before. I created a new branch, committed and tried to git push --set-upstream origin…
ToT
  • 491
  • 3
  • 5
0
votes
1 answer

How add server-side git hooks in Assembla?

How can i add server-side hooks in Assembla for all users this repository? If i add in .git/hooks it's be only for my local repository or i don't understand something? I need hooks for check and edit commit messages for all users of repository.